:root {
  /* colors */
  --primary-2: #0024A6;
  --primary-1: #265cff;
  --primary0: #265CFF;
  --primary-footer: #113dd9;
  --primary1: #77A2FF;
  --primary3: #BAD2FF;
  --primary4: #EBF1FF;
  --primary-transparent: #77a2ff6b;
  --text-header: #0d0e0f;
  --text-body: #292c34;
  --text-gray: #0000008f;
  --turquoise: #75FBFD;
  --bg-1: #F2F6FC;
  --green: #00BF58;
  --red: #FA0C00;
  /* shadows */
  --shadow-categories: -12px 10px 41px 0px rgba(0, 36, 166, 0.19);
  --shadow-small: 0 8px 12px 2px rgba(0, 28, 53, 0.05);
  --shadow-cards: 0px 10px 27px 0px rgba(0, 36, 166, 0.19);
  --shadow-3: 0px 8px 16px 0px rgba(25, 25, 29, 0.06), 0px 4px 8px 0px rgba(139, 168, 255, 0.54);
  --shadow-turquoise: 0px 6px 38px 0px rgba(117, 251, 253, 0.30);
  --shadow-dark-blue: 0px 6px 17px 0px rgba(0, 36, 166, 0.54);
}

/* HERO SECTION */
.hero-section {
    padding-top: 80px;
    min-height: 80vh;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  }
  
  .hero-section .container-fluid {
    padding: 0;
  }
  
  .hero-content {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -210px;
  }
  
  .hero-text-wrapper {
    max-width: 500px;
  }
  
  .hero-title {
    font-size: 64px;
    font-weight: 500 !important;
    line-height: 1.1;
    color: var(--text-header);
    margin-bottom: 24px;
    font-family: 'Gordita', sans-serif;
  }
  
  .hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 400px;
  }
  
  .hero-benefits {
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-benefits li {
    position: relative;
    padding-left: 36px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
  }
  
  .hero-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: url(../assets/icons/check-blue.svg) no-repeat center / contain;
  }
  
  /* Desktop: a little extra breathing room between points */
  @media (min-width: 992px) {
    .hero-benefits {
      gap: 14px;
      margin: 20px 0 28px;
    }
    .hero-benefits li {
      line-height: 1.7;
    }
  }
  
  .btn-post-jobs {
    background: var(--primary0);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(38, 92, 255, 0.3);
  }
  
  .btn-post-jobs:hover {
    background: var(--primary-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(38, 92, 255, 0.4);
  }
  
  .hero-image-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  
  .hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 760px;
  }
  
  .hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  
  
  /* Mobile Responsive */
  @media (max-width: 991.98px) {
  .banner-wrapper .jobrequest__container {
    padding: 0 !important; /* remove outer container padding */
  }
    .hero-section {
      padding-top: 80px;
      min-height: auto;
    }
    
    .hero-content {
      padding: 20px;
      text-align: left;
    }
    
    .hero-title {
      font-size: 46px;
      margin-bottom: 16px;
      font-weight: 500;
      text-align: left;
      line-height: 1.1;
    }
    
    .hero-description {
      font-size: 16px;
      margin-bottom: 24px;
      max-width: 100%;
      text-align: left;
      line-height: 1.4;
    }
    
    .hero-benefits {
      margin: 12px 0 20px;
      gap: 8px;
    }
    
    .hero-benefits li {
      font-size: 16px;
      padding-left: 32px;
    }
    
    .hero-benefits li::before {
      width: 20px;
      height: 20px;
    }
    
    .btn-post-jobs {
      display: inline-block;
      margin: 0 0 20px 0;
    }
    
    .hero-image-section {
      padding: 0 20px 20px;
      margin-top: 0;
    }
  }
  
  /* Larger desktops: allow hero image to grow a bit more */
  @media (min-width: 1400px) {
    .hero-image-wrapper {
      max-width: 820px;
    }
  }
  
  /* Receive section image sizing to match hero */
  .receive-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 820px;
  }
  
  .receive-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  
  @media (min-width: 1400px) {
    .receive-image-wrapper {
      max-width: 900px;
    }
  }
  
  /* Reduce excessive vertical space in Receive section */
  .receive-applications-section .row.min-vh-100 {
    min-height: 60vh; /* less than full viewport to tighten gap */
  }
  
  @media (max-width: 991.98px) {
    .receive-applications-section .row.min-vh-100 {
      min-height: auto; /* let content define height on smaller screens */
    }
  }
  
  @media (max-width: 767.98px) {
    .hero-section {
      padding-top: 120px;
      background: white;
    }
    
    .hero-section .container-fluid {
      padding: 0 20px;
    }
    
    .hero-content {
      padding: 60px 40px 10px;
      margin-top: -100px;
    }
    
    .hero-title {
      font-size: 36px;
      font-weight: 500;
      text-align: left;
      margin-bottom: 16px;
      line-height: 1.1;
      font-family: 'Gordita', sans-serif;
    }
    
    .hero-description {
      font-size: 14px;
      font-weight: 400;
      text-align: left;
      margin-bottom: 24px;
      line-height: 1.4;
    }
    
    .btn-post-jobs {
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 500;
      display: inline-block;
      margin: 0 0 24px 0;
    }
    
    .hero-image-section {
      padding: 0;
    }
    
    .hero-main-image {
      border-radius: 16px;
    }
  }
  
  /* How it works section */
  .how-it-works-section {
    background: #265cff !important;
    padding: 80px 0;
    position: relative;
  }
  
  .how-it-works-title {
    font-size: 48px;
    font-weight: 500 !important;
    color: white;
    margin-bottom: 60px;
    text-align: center;
    font-family: 'gordita', sans-serif;
  }
  
  .how-it-works-steps {
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
  }
  
  .step-item {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    flex: 1;
    max-width: 280px;
  }
  
  .step-content {
    text-align: center;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
  }
  
  .step-icon img {
    width: 40px;
    height: 40px;
  }
  
  .step-title {
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
    font-family: 'Gordita', sans-serif;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .step-description {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
  }
  
  .arrow-container {
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }
  
  .step-arrow {
    width: 60px;
    height: auto;
  }
  
  /* Mobile styles for How it works */
  @media (max-width: 991px) {
    .how-it-works-section {
      padding: 80px 0;
      background: #265cff;
    }
    
    .how-it-works-title {
      font-size: 36px;
      margin-bottom: 40px;
    }
    
    .how-it-works-steps {
      flex-direction: column;
    }
    
    .step-item {
      margin-bottom: 50px;
      flex: none;
    }
    
    .step-content {
      max-width: 100%;
      padding: 0 20px;
    }
    
    .step-title {
      font-size: 20px;
    }
    
    .step-description {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .how-it-works-section {
      padding: 40px 0;
      background: #265cff;
    }
    
    .how-it-works-title {
      font-size: 28px;
      margin-bottom: 30px;
    }
    
    .step-item {
      margin-bottom: 40px;
    }
    
    .step-icon {
      width: 70px;
      height: 70px;
      margin-bottom: 20px;
    }
    
    .step-icon img {
      width: 35px;
      height: 35px;
    }
    
    .step-title {
      font-size: 18px;
      margin-bottom: 12px;
    }
    
    .step-description {
      font-size: 14px;
      line-height: 1.4;
    }
  }
  
  /* Receive 5 Applications section */
  .receive-applications-section {
    background: white;
    padding: 36px 0 28px; /* reduced top padding to tighten space above */
    position: relative;
  }
  
  .receive-content {
    padding: 60px 40px 40px 160px; /* reduced top padding */
  }
  
  .receive-text-wrapper {
    max-width: 500px;
  }
  
  .receive-title {
    font-size: 64px;
    font-weight: 500 !important;
    line-height: 1.1;
    color: var(--text-header);
    margin-bottom: 24px;
    font-family: 'Gordita', sans-serif;
  }
  
  .receive-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 24px;
    max-width: 400px;
  }
  
  /* Receive section benefits list with checkmarks */
  .receive-benefits {
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .receive-benefits li {
    position: relative;
    padding-left: 36px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
  }
  
  .receive-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: url(../assets/icons/check-blue.svg) no-repeat center / contain;
  }
  
  /* Desktop: add a little extra spacing between points */
  @media (min-width: 992px) {
    .receive-benefits {
      gap: 14px;
      margin: 20px 0 28px;
    }
    .receive-benefits li {
      line-height: 1.7;
    }
  }
  
  .receive-image-section {
    padding: 40px;
  }
  
  .receive-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .receive-main-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
  }
  
  /* Mobile styles for Receive Applications */
  @media (max-width: 991px) {
    .receive-applications-section {
      padding: 32px 0 24px; /* reduced top padding on mobile/tablet */
    }
    
    .receive-content {
      padding: 12px 40px 10px; /* reduced top padding on mobile/tablet */
    }
    
    .receive-title {
      font-size: 46px;
      margin-bottom: 16px;
      font-weight: 500;
      text-align: left;
      line-height: 1.1;
    }
    
    .receive-description {
      font-size: 16px;
      font-weight: 400;
      text-align: left;
      margin-bottom: 24px;
      line-height: 1.4;
    }
    
    .receive-benefits {
      margin: 12px 0 20px;
      gap: 8px;
    }
    .receive-benefits li {
      font-size: 16px;
      padding-left: 32px;
    }
    .receive-benefits li::before {
      width: 20px;
      height: 20px;
    }
    
    .receive-image-section {
      padding: 0;
    }
    
    .receive-main-image {
      border-radius: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .receive-applications-section {
      background: white;
    }
    
    .receive-content {
      padding: 20px 40px 10px;
    }
    
    .receive-title {
      font-size: 36px;
      font-weight: 500;
      text-align: left;
      margin-bottom: 16px;
      line-height: 1.1;
    }
    
    .receive-description {
      font-size: 14px;
      font-weight: 400;
      text-align: left;
      margin-bottom: 24px;
      line-height: 1.4;
    }
    
    .receive-image-section {
      padding: 0;
    }
    
    .receive-main-image {
      border-radius: 16px;
      max-width: 350px;
    }
  }

/* BANNER SECTION LOGOS - COMPLETE SECTION WITH ALL BREAKPOINTS */
/* Base typography styles */
.description-big {
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-body);
}

.logos--title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-body);
}

.banner-section p.description-big {
  margin-top: 1.5rem;
}

/* Brand Logos Section - Base Styles */
.banner-section__logos {
  padding: 40px 0 60px 0 !important;
  margin-bottom: 0 !important;
}

.banner-section__logos .logos--wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-left: 6%;
  margin-right: 6%;
}

.banner-section__logos .logos--wrapper img.brands-logos--img {
  width: 7vw;
  max-width: 180px;
  height: auto;
  margin: 0 16px 20px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.banner-section__logos.featured-in .logos--wrapper img.brands-logos--img {
  width: 10vw;
}

/* Mobile Brand Logos Slider */
.banner-section__logos-mobile {
  display: none;
  text-align: center;
  margin-bottom: 20px;
  padding: 30px 0 40px 0 !important;
  margin-bottom: 0 !important;
}

.banner-section__logos-mobile .logos--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 6%;
  margin-right: 6%;
}

.banner-section__logos-mobile .logos--wrapper img.brands-logos--img {
  width: 25vw;
  max-width: 120px;
  min-width: 80px;
  height: auto;
  margin: 0 8px 15px;
}

/* Brands logos container and items */
.brands-logos {
  padding: 0 20px;
}

.brands-logos .logo {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-logos .logo img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  object-fit: contain;
  padding-left: 10px;
}

.logos--slider {
  width: 100%;
}

.logos--slider .item {
  padding: 0 10px;
}

/* Container responsive styles */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Override Bootstrap spacing utilities in logos */
.banner-section__logos .pt-4,
.banner-section__logos .pt-sm-3 {
  padding-top: 20px !important;
}

.banner-section__logos .pb-sm-2,
.banner-section__logos .pb-xl-4 {
  padding-bottom: 30px !important;
}

.banner-section__logos .pt-xl-2 {
  padding-top: 10px !important;
}

.banner-section__logos-mobile .pt-3 {
  padding-top: 15px !important;
}

/* Mobile first responsive breakpoints */
@media (max-width: 767px) {

  .step-arrow {
    display: none;
  }
  .banner-section__logos {
    display: none;
  }
  
  .banner-section__logos-mobile {
    display: block;
  }

  .banner-section__logos .logos--wrapper,
  .banner-section__logos-mobile .logos--wrapper {
    max-width: 538px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 16px;
  }

  .banner-section__logos .logos--wrapper img.brands-logos--img,
  .banner-section__logos-mobile .logos--wrapper img.brands-logos--img {
    width: 28vw;
    max-width: 140px;
    min-width: 100px;
    margin: 0 12px 20px;
  }

  .banner-section__logos-mobile p.logos--title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .brands-logos {
    padding-left: 15vw !important;
    padding-right: 15vw !important;
  }

  div.brands-logos div img {
    width: 25vw;
    max-width: 140px;
    min-width: 90px;
    height: auto;
  }

  .brands-logos .row {
    gap: 20px;
  }
}

/* Tablet breakpoint */
@media (min-width: 768px) and (max-width: 991.98px) {
  .banner-section__logos .logos--wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
  }

  .brands-logos {
    margin-top: 3vw;
  }

  .banner-section__logos .logos--wrapper img.brands-logos--img {
    width: 6vw;
  }
}

/* Desktop breakpoint */
@media (min-width: 992px) {
  .banner-section__logos .logos--wrapper {
    width: 70vw;
    max-width: 100%;
    margin: auto;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
  }
  
  .banner-section__logos .logos--wrapper img.brands-logos--img {
    width: auto;
    max-width: 80px;
    margin: 0 8px;
  }
}

/* Large desktop breakpoint */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important;
  }

  .banner-section__logos .logos--wrapper {
    width: 53vw;
  }

  .banner-section__logos .logos--wrapper img.brands-logos--img {
    width: 5vw;
    max-width: 95px;
    margin: 0 10px;
  }
}

/* Ultra-wide desktop breakpoint */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px !important;
  }

  .banner-section__logos .logos--wrapper img.brands-logos--img {
    max-width: 110px;
    margin: 0 12px;
  }
}

/* ========================================
   BANNER TESTIMONIAL SLIDER SECTION
   ======================================== */

/* Banner wrapper for employers */
.banner-wrapper.foremployers {
  margin-bottom: 0 !important;
  padding: 0 0 56px !important;
  background: transparent !important;
}

/* Container for job request */
.banner-wrapper .jobrequest__container {
  max-width: 1200px !important;
  padding: 0 24px !important;
  overflow: visible !important; /* allow dots below slider */
}

/* Testimonial slider container */
.banner-wrapper .testimonial-slider {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding-bottom: 6px !important;
  overflow: visible !important; /* allow dots to show fully */
}

/* Banner landing CTA card */
.banner-wrapper.foremployers .banner-landing-cta {
  display: flex !important;
  align-items: stretch !important;
  gap: 0 !important;
  background: var(--primary0) !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 24px rgba(38, 92, 255, 0.25) !important;
  position: relative !important;
  min-height: 300px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

/* Shape banner decorative elements */
.banner-landing-cta div.shape-banner {
  width: 80px;
  height: 80px;
  background-color: var(--primary-transparent);
  border-radius: 200px 0 55px;
  position: absolute;
  top: -15px;
  left: -15px;
}

.banner-landing-cta div.shape-banner:last-of-type {
  width: 120px;
  height: 100px;
  border-radius: 200px 0 55px;
  right: -15px;
  left: auto;
}

.banner-wrapper.foremployers .banner-landing-cta .shape-banner {
  display: none !important;
}

/* Recruiter image column */
.banner-wrapper.foremployers .recruiter-img {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 20px 0 0 20px !important;
  align-self: stretch !important;
  height: 100% !important;
  line-height: 0 !important;
  background: #fff !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

/* Picture banner image */
.banner-wrapper .banner-landing-cta .picture-banner,
.banner-wrapper.foremployers .recruiter-img .picture-banner,
.banner-wrapper.foremployers img.picture-banner {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: -1px !important;
  bottom: -1px !important;
  width: 100% !important;
  height: calc(100% + 2px) !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 0 !important;
  display: block !important;
}

/* Text content column */
.banner-wrapper.foremployers .col-cta-text {
  padding: 28px 40px !important;
  display: flex !important;
  align-items: center !important;
  border-radius: 0 20px 20px 0 !important;
  background: var(--primary0) !important;
  flex-direction: column;
  justify-content: center;
}

/* CTA text styling */
.banner-wrapper.foremployers .col-cta-text .cta-text {
  font-size: 18px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
  padding: 30px;
  text-align: center !important;
  color: white;
}

.banner-wrapper.foremployers .col-cta-text p:not(.cta-text) {
  font-size: 14px !important;
  line-height: 1.4 !important;
  opacity: 0.9 !important;
  margin: 0 !important;
  padding: 30px;
  text-align: center;
  color: white;
}

/* Mobile circular avatar */
.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 16px auto;
  display: block;
}

/* Typography classes */
.body-big {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.text-white {
  color: #ffffff !important;
}

/* Slick slider integration */
.feedback-slider .slick-track,
.testimonial-slider .slick-track {
  display: flex !important;
}

.feedback-slider .slick-track .slick-slide,
.testimonial-slider .slick-track .slick-slide {
  height: inherit;
  display: flex;
  min-width: 0 !important;
}

.testimonial-slider .slick-list {
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

.testimonial-slider .slick-slide {
  margin: 0 !important;
  padding: 0 !important;
}

.testimonial-slider .slick-slide > div {
  width: 100% !important;
  height: 100% !important;
}

/* Slider dots styling */
.banner-wrapper .slick-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 20px 0 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.banner-wrapper .slick-dots li {
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}

.banner-wrapper .slick-dots li:after {
  content: none !important;
}

.banner-wrapper .slick-dots li button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: rgba(97, 96, 96, 0.5) !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  outline: none !important;
  appearance: none !important;
  position: relative !important;
}

.banner-wrapper .slick-dots li button:before {
  display: none !important;
  content: '' !important;
}

.banner-wrapper.foremployers .testimonial-slider .slick-dots li button,
.banner-wrapper .slick-dots li button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: rgba(111, 109, 109, 0.5) !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  outline: none !important;
  appearance: none !important;
  position: relative !important;
}

.banner-wrapper.foremployers .testimonial-slider .slick-dots li.slick-active button,
.banner-wrapper .slick-dots li.slick-active button {
  background-color: var(--primary0) !important;
}

/* RESPONSIVE BREAKPOINTS FOR TESTIMONIAL SLIDER */

/* Mobile styles (max-width: 991.98px) */
@media (max-width: 991.98px) {
  .banner-wrapper.foremployers .banner-landing-cta {
    border-radius: 20px !important;
    min-height: unset !important;
    margin: 0 !important; /* remove outer gap that causes halo */
    box-shadow: none !important; /* remove subtle glow on mobile */
    border: 0 !important;
    background-clip: padding-box !important; /* avoid anti-aliased halo on corners */
  }
  
  .banner-wrapper.foremployers .recruiter-img {
    display: none !important;
  }
  
  .banner-wrapper.foremployers .col-cta-text {
    padding: 20px 22px !important;
  }
  
  .banner-wrapper.foremployers .col-cta-text .cta-text {
    font-size: 18px !important;
    line-height: 1.45 !important;
  }
  
  .banner-wrapper .slick-dots {
    margin-top: 14px !important;
  }
  
  .testimonial-avatar {
    display: block !important;
  }
  
  .banner-wrapper .testimonial-slider {
    padding: 0 !important; /* remove inner padding */
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
  }
  
  .testimonial-slider .slick-list {
    margin: 0 !important; /* remove negative/positive margins */
    padding: 0 !important; /* remove inner padding */
    background: transparent !important; /* avoid any background halo */
    box-shadow: none !important; /* ensure no list-level shadow */
    border: 0 !important;
  }

  .testimonial-slider,
  .testimonial-slider .slick-track,
  .testimonial-slider .slick-slide {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    outline: none !important;
  }
}

/* Desktop styles (min-width: 992px) */
@media (min-width: 992px) {
  .testimonial-avatar {
    display: none !important;
  }
  
  .banner-wrapper.foremployers .banner-landing-cta .recruiter-img {
    flex: 0 0 40% !important;
    max-width: 40% !important;
  }
  
  .banner-wrapper.foremployers .banner-landing-cta .col-cta-text {
    flex: 0 0 60% !important;
    max-width: 60% !important;
  }

  /* Desktop-only: remove outer container padding to avoid clipping and stray whitespace */
  .banner-wrapper.foremployers .jobrequest__container {
    padding: 0 !important;
  }

  /* Desktop-only: ensure the visible slide is fully clipped and rounded */
  .banner-wrapper.foremployers .testimonial-slider .slick-list {
    overflow: hidden !important;
    border-radius: 20px !important;
  }

  /* Keep card rounding intact and prevent image from collapsing width */
  .banner-wrapper.foremployers .banner-landing-cta {
    border-radius: 20px !important;
    overflow: hidden !important;
  }
  .banner-wrapper.foremployers .recruiter-img {
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
  }
}

/* Bootstrap utility classes */
.d-none {
  display: none !important;
}

.d-lg-block {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  
  .d-lg-none {
    display: none !important;
  }
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-lg-0 {
  padding-left: 0.75rem !important;
}

@media (min-width: 992px) {
  .pl-lg-0 {
    padding-left: 0 !important;
  }
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-lg-6 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Row and flexbox utilities */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

/* Tablet styles (min-width: 768px) */
@media (min-width: 768px) {
  .banner-section__logos-mobile {
    display: none;
  }

  .banner-section__logos {
    display: block;
  }

  .banner-section__logos .logos--wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Desktop styles (min-width: 992px) */
@media (min-width: 992px) {
  .banner-section__logos .logos--wrapper {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
  }
  
  .banner-section__logos .logos--wrapper img.brands-logos--img {
    width: auto;
    max-width: 80px;
    margin: 0 8px;
  }
}

/* Large desktop styles (min-width: 1024px) */
@media (min-width: 1024px) {
  .banner-section__logos .logos--wrapper img.brands-logos--img {
    width: 6vw;
  }

  .description-big {
    font-size: 20px;
  }
}

/* Extra large desktop styles (min-width: 1200px) */
@media (min-width: 1200px) {
  .banner-section__logos .logos--wrapper img.brands-logos--img {
    max-width: 95px;
    margin: 0 10px;
  }

  .banner-section__logos .logos--wrapper {
    width: 70vw;
    max-width: 100%;
    margin: auto;
  }
}

/* Ultra wide desktop styles (min-width: 1400px) */
@media (min-width: 1400px) {
  .banner-section__logos .logos--wrapper img.brands-logos--img {
    max-width: 110px;
    margin: 0 12px;
    width: 5vw;
  }

  .banner-section__logos .logos--wrapper {
    width: 53vw;
  }
}

/* BANNER WRAPPER FOR EMPLOYERS - COMPLETE SECTION */
/* Testimonial banner alignment fixes - bulletproof spacing */
.banner-wrapper {
  width: 100%;
  padding: 60px 0 !important;
  background: transparent;
}

/* Mobile circular avatar between quote and name */
.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  margin: 8px 0 6px;
  border: 2px solid rgba(255,255,255,0.6);
}

@media (min-width: 992px) {
  .testimonial-avatar { display: none !important; }
}

.banner-wrapper .jobrequest__container {
  max-width: 1400px !important;
  width: 95% !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
}

.banner-wrapper .testimonial-slider {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.banner-wrapper .banner-landing-cta {
  padding: 24px; /* consistent base padding */
  max-width: 100%;
  overflow: hidden;
}

.banner-wrapper .banner-landing-cta .col-cta-text {
  padding: 24px 32px; /* balanced inner spacing */
  max-width: 600px; /* prevent text from stretching too wide */
  margin-left: auto; /* center the text block */
  margin-right: 0; /* align to left edge of available space */
}

.banner-wrapper .banner-landing-cta .recruiter-img {
  padding: 0; /* remove all padding from image column */
  margin: 0;
}

.banner-wrapper .banner-landing-cta .picture-banner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.jobrequest__container section.banner-wrapper {
  position: relative;
}

/* Post job request wrapper specific styles */
.post-job-request-wrapper section.banner-wrapper:first-of-type {
  padding-top: 50px;
  margin-top: 60px;
  margin-bottom: 100px;
}

/* FOR EMPLOYERS SPECIFIC STYLES */
.banner-wrapper.foremployers {
  margin-bottom: 0 !important;
  padding: 0 0 56px !important;
  background: transparent !important;
}

.banner-wrapper.foremployers .jobrequest__container {
  max-width: 1200px !important;
  padding: 0 24px !important;
}

.banner-wrapper.foremployers .testimonial-slider {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding-bottom: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.banner-wrapper.foremployers .banner-landing-cta {
  justify-content: space-between;
  background: var(--primary0) !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 24px rgba(38, 92, 255, 0.25) !important;
  position: relative !important;
  min-height: 300px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.jobseekers-employers-landing .banner-wrapper.foremployers .banner-landing-cta {
  justify-content: flex-start;
  align-items: end;
  margin: auto;
  padding-left: 0;
}

.banner-wrapper.foremployers .banner-landing-cta .recruiter-img {
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
  border-radius: 20px 0 0 20px !important;
  align-self: stretch !important;
  height: 100% !important;
  line-height: 0 !important;
  background: #fff !important;
}

.banner-wrapper.foremployers .banner-landing-cta .shape-banner {
  display: none !important;
}

.banner-wrapper.foremployers .recruiter-img .picture-banner,
.banner-wrapper.foremployers img.picture-banner {
  transform: scale(2);
  position: relative;
  top: 94px;
  width: 100% !important;
  height: 340px !important;
  object-fit: cover !important;
  border-radius: 28px 0 0 28px !important;
  display: block !important;
}

.jobseekers-employers-landing .banner-wrapper.foremployers img.picture-banner {
  transform: none;
  top: 0;
}

.banner-wrapper.foremployers .col-cta-text {
  padding: 28px 40px !important;
  display: flex !important;
  align-items: center !important;
  border-radius: 0 20px 20px 0 !important;
  background: var(--primary0) !important;
}

/* Typography inside testimonial card */
.banner-wrapper.foremployers .col-cta-text .cta-text {
  font-size: 22px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}

.banner-wrapper.foremployers .col-cta-text p:not(.cta-text) {
  font-size: 14px !important;
  line-height: 1.4 !important;
  opacity: 0.9 !important;
  margin-bottom: 0 !important;
}

/* Remove gutters so edges are flush */
.banner-wrapper.foremployers .banner-landing-cta > [class*="col-"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Decorative base under card */
.banner-wrapper.foremployers .banner-landing-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 80%;
  height: 8px;
  background: rgba(0, 36, 166, 0.15);
  border-radius: 50px;
  filter: blur(4px);
}

/* Slick slider styles for banner */
.banner-wrapper .slick-initialized .slick-slide {
  display: flex;
}

/* Testimonial slider dots inside banner: ensure circular dots and no overlap */
.banner-wrapper .slick-dots {
  position: static;
  margin: 8px 0 0;
  padding: 0 !important;
}

.banner-wrapper .slick-dots li:before,
.banner-wrapper .slick-dots li:after {
  content: none !important; /* prevent numbered pills from themes */
}

/* make dots smaller inside banner */
.banner-wrapper .slick-dots li {
  width: 10px !important;
  height: 10px !important;
  margin: 0 4px !important;
  display: inline-block !important;
  list-style: none !important;
}

.banner-wrapper.foremployers .testimonial-slider .slick-dots li button,
.banner-wrapper .slick-dots li button {
  width: 12px !important;
  height: 12px !important;
  min-width: 12px !important;
  border-radius: 50% !important;
  background-color: rgba(202, 202, 202, 0.4) !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 0 !important;
  line-height: 0 !important;
  outline: none !important;
  padding: 0 !important;
  text-indent: -9999px !important;
  appearance: none !important;
  position: relative !important;
}

.banner-wrapper.foremployers .testimonial-slider .slick-dots li.slick-active button,
.banner-wrapper .slick-dots li.slick-active button {
  background-color: var(--primary0) !important;
}

/* kill pseudo-elements to avoid numbered pills */
.banner-wrapper .slick-dots li button:before,
.banner-wrapper .slick-dots li button:after {
  content: none !important;
}

/* Remove default slick bottom margin under slider */
.banner-wrapper .slick-slider {
  margin-bottom: 0 !important;
}

/* RESPONSIVE BREAKPOINTS */

/* Mobile styles */
@media (max-width: 991.98px) {
  .banner-wrapper .banner-landing-cta {
    padding: 20px; /* balanced mobile padding */
  }
  
  .banner-wrapper .banner-landing-cta .col-cta-text {
    padding: 20px 24px;
    max-width: 100%; /* full width on mobile */
    margin: 0; /* reset margins on mobile */
  }

  .banner-wrapper.foremployers .banner-landing-cta {
    border-radius: 20px !important;
  }
  
  .banner-wrapper.foremployers .recruiter-img {
    display: none !important;
  }
  
  .banner-wrapper.foremployers .col-cta-text {
    padding: 22px !important;
  }

  .banner-wrapper.foremployers img.picture-banner {
    top: 130px;
  }

  .post-job-request-wrapper section.banner-wrapper:first-of-type {
    padding-top: 24px;
    margin-bottom: 36px;
  }
}

/* Desktop styles */
@media (min-width: 992px) {
  .banner-wrapper .banner-landing-cta {
    padding: 32px 80px 32px 32px; /* generous right margin */
  }
  
  .banner-wrapper .banner-landing-cta .col-cta-text {
    padding: 32px 48px; /* generous inner padding */
    max-width: 580px; /* optimal reading width */
    margin-right: auto; /* center within available space */
  }

  /* Desktop alignment: image flush left, remove left shape gap */
  .banner-wrapper.foremployers .banner-landing-cta {
    padding: 0 !important;
    border-radius: 30px !important;
    overflow: hidden;
  }
  
  .banner-wrapper.foremployers .recruiter-img {
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 30px 0 0 30px !important;
    overflow: hidden;
  }
  
  .banner-wrapper.foremployers img.picture-banner {
    position: static !important;
    transform: none !important;
    top: auto !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: -1px !important;
    bottom: -1px !important;
    height: calc(100% + 2px) !important;
    object-position: center top !important;
    border-radius: 0 !important;
  }
  
  /* hide decorative left shape so image touches left edge */
  .banner-wrapper.foremployers .banner-landing-cta .shape-banner:first-of-type {
    display: none;
  }

  /* Columns: 40% image / 60% text */
  .banner-wrapper.foremployers .banner-landing-cta .recruiter-img { 
    flex: 0 0 40% !important; 
    max-width: 40% !important; 
  }
  
  .banner-wrapper.foremployers .banner-landing-cta .col-cta-text { 
    flex: 0 0 60% !important; 
    max-width: 60% !important; 
  }

  .jobseekers-employers-landing .banner-wrapper.foremployers .banner-landing-cta {
    align-items: center;
  }
}

/* Large desktop styles */
@media (min-width: 1200px) {
  .banner-wrapper .banner-landing-cta {
    padding: 32px 120px 32px 32px; /* extra space on large screens */
  }
  
  .banner-wrapper .banner-landing-cta .col-cta-text {
    max-width: 620px; /* slightly wider on large screens */
  }
}

/* ===============================
   Testimonial (foremployers) — FINAL OVERRIDES
   Keep HTML unchanged. Exact match to reference.
   =============================== */
   .banner-wrapper.foremployers { padding: 0 0 56px !important; background: transparent !important; }
   .banner-wrapper.foremployers .jobrequest__container { max-width: 1200px !important; padding: 0 24px !important; }
   .banner-wrapper.foremployers .testimonial-slider { max-width: 1100px !important; margin: 0 auto !important; padding-bottom: 6px !important; }
   
   .banner-wrapper.foremployers .banner-landing-cta { 
     display: flex !important;
     align-items: stretch !important;
     gap: 0 !important;
     padding: 0 !important;
     margin: 0 auto 26px !important;
     background: transparent !important;
     border-radius: 20px !important;
     box-shadow: none !important;
     min-height: 300px !important;
     overflow: hidden !important;
   }
   .banner-wrapper.foremployers .banner-landing-cta .shape-banner { display: none !important; }
   
   /* Columns: 40% image / 60% text */
   @media (min-width: 992px) {
     .banner-wrapper.foremployers .banner-landing-cta .recruiter-img { flex: 0 0 40% !important; max-width: 40% !important; }
     .banner-wrapper.foremployers .banner-landing-cta .col-cta-text { flex: 0 0 60% !important; max-width: 60% !important; }
   }
   
   /* Remove gutters so edges are flush */
   .banner-wrapper.foremployers .banner-landing-cta > [class*="col-"] { padding-left: 0 !important; padding-right: 0 !important; }
   
   /* Image fills left side fully with rounded left corners */
   .banner-wrapper.foremployers .recruiter-img { position: relative !important; overflow: hidden !important; border-radius: 20px 0 0 20px !important; align-self: stretch !important; height: 100% !important; line-height: 0 !important; background: #fff !important; }
   .banner-wrapper.foremployers .recruiter-img .picture-banner,
   .banner-wrapper.foremployers img.picture-banner { position: absolute !important; left: 0 !important; right: 0 !important; top: -1px !important; bottom: -1px !important; width: 100% !important; height: calc(100% + 2px) !important; object-fit: cover !important; object-position: center top !important; border-radius: 0 !important; display: block !important; }
   
   /* Text area padding and vertical centering */
   .banner-wrapper.foremployers .col-cta-text { padding: 28px 40px !important; display: flex !important; align-items: center !important; border-radius: 0 20px 20px 0 !important; background: var(--primary0) !important; }
   .banner-wrapper.foremployers .col-cta-text .cta-text { font-size: 18px !important; line-height: 1.45 !important; font-weight: 500 !important; margin-bottom: 10px !important; padding: 30px; text-align: center !important; }
   .banner-wrapper.foremployers .col-cta-text p:not(.cta-text) { font-size: 14px !important; line-height: 1.4 !important; opacity: .9 !important; margin: 0 !important; padding: 30px;
     text-align: center;}
   
   /* Dots centered below */
   .banner-wrapper .slick-dots { text-align: center !important; margin-top: 16px !important; position: static !important; }
   
   /* Remove base bar entirely (no visible band) */
   .banner-wrapper.foremployers .banner-landing-cta::after { content: none !important; }
   
   /* Mobile spacing tweaks */
   @media (max-width: 991.98px) {
     .banner-wrapper.foremployers .recruiter-img { display: none !important; }
     .banner-wrapper.foremployers .banner-landing-cta { min-height: unset !important; }
     .banner-wrapper.foremployers .col-cta-text { padding: 20px 22px !important; }
     .banner-wrapper.foremployers .col-cta-text .cta-text { font-size: 18px !important; line-height: 1.45 !important; }
     .banner-wrapper .slick-dots { margin-top: 14px !important; }
   }

   @media (max-width: 1199px) {
    header img.logo-header {
      margin-left: 20px;
    }
  }