/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff; /* White background */
  color: #000000; /* Black text color */
}

/* ===== Base Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 16px 32px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* Sticky scroll state */
.header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

/* ===== Logo ===== */
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo img {
  width: clamp(44px, 5vw, 64px);
  height: auto;
  object-fit: contain;
}

/* ===== Navbar ===== */
.navbar {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.navbar .nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  list-style: none;
  min-width: 0;
  flex-wrap: nowrap;
}

.navbar .nav-list li {
  display: flex;
  align-items: center;
  min-width: 0;
}

.navbar .nav-list li a {
  text-decoration: none;
  color: #111111;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 10px 6px;
  transition: color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.navbar .nav-list li a:hover {
  color: #20831f;
  transform: translateY(-1px);
}

/* ===== CTA Buttons ===== */
.cta-buttons {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cta-buttons .primary-cta,
.cta-buttons .secondary-cta,
.mobile-cta .primary-cta,
.mobile-cta .secondary-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;

  transition: all 0.3s ease;
}

.cta-buttons .primary-cta,
.mobile-cta .primary-cta {
  background: #20831f;
  color: #ffffff;
  border: 1px solid #01b201;
}

.cta-buttons .primary-cta:hover,
.mobile-cta .primary-cta:hover {
  background: #20831f;
  border-color: #01b201;
}

.cta-buttons .secondary-cta,
.mobile-cta .secondary-cta {
  background: transparent;
  color: #01b201;
  border: 1px solid #01b201;
}

.cta-buttons .secondary-cta:hover,
.mobile-cta .secondary-cta:hover {
  background: #01b201;
  color: #ffffff;
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.hamburger .line {
  width: 100%;
  height: 3px;
  background: #01b201;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* ===== Mobile CTA Hidden on Desktop ===== */
.mobile-cta {
  display: none;
}

/* ===== Large Tablet ===== */
@media (max-width: 1200px) {
  .header {
    padding: 14px 24px;
    gap: 18px;
  }

  .navbar .nav-list {
    gap: 16px;
  }

  .cta-buttons .primary-cta,
  .cta-buttons .secondary-cta {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
  .header {
    gap: 14px;
  }

  .navbar .nav-list {
    gap: 12px;
  }

  .navbar .nav-list li a {
    font-size: 13px;
  }

  .cta-buttons .primary-cta,
  .cta-buttons .secondary-cta {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ===== Mobile Menu Mode ===== */
@media (max-width: 860px) {
  .header {
    padding: 14px 18px;
    gap: 12px;
    position: sticky;
  }

  .navbar {
    flex: 0 1 auto;
    justify-content: flex-end;
  }

  .cta-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar .nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 18px;
    right: 18px;

    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;

    background: #ffffff;
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
  }

  .navbar.active .nav-list {
    display: flex;
  }

  .navbar .nav-list li {
    width: 100%;
  }

  .navbar .nav-list li a {
    width: 100%;
    padding: 14px 12px;
    border-radius: 12px;
    font-size: 14px;
  }

  .navbar .nav-list li a:hover {
    background: rgba(0, 51, 102, 0.06);
    transform: none;
  }

  .mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobile-cta .primary-cta,
  .mobile-cta .secondary-cta {
    width: 100%;
    min-height: 46px;
  }
}

/* ===== Small Mobile ===== */
@media (max-width: 480px) {
  .header {
    padding: 12px 14px;
  }

  .logo img {
    width: 44px !important;
  }

  .navbar .nav-list {
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    border-radius: 16px;
  }

  .navbar .nav-list li a {
    font-size: 13.5px;
    padding: 13px 10px;
  }
}





























/* Hero Section Styling */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80vh; /* Adjust height for visual balance */
  padding: 0 40px;
  background-color: #f8f9fa; /* Light background color */
  margin-top: 60px; /* Adjust if needed to avoid overlap with the navbar */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
  flex-wrap: wrap; /* Ensure items wrap on small screens */
  transition: all 0.3s ease; /* Smooth transition for section hover effect */
}

/* Container for Content */
.hero-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  max-width: 1200px; /* Controls the maximum width */
  margin: 0 auto; /* Centers the content */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Text Content */
.text-content {
  width: 45%; /* Text content takes up 45% of the screen on desktop */
  padding-right: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
}


.text-content:hover {
  transform: translateY(-10px); /* Slight lift effect on hover */
  
}

.eyebrow-text {
  font-size: 14px;
  font-weight: bold;
  color: #01b201; /* Dark blue color for eyebrow text */
  margin-bottom: 10px;
  transition: color 0.3s ease; /* Smooth color transition */

}
.eyebrow-text:hover {
  color: #20831f; /* Change color on hover */
}

.headline {
  font-size: 48px; /* Headline is bold and large */
  font-weight: 700;
  margin: 20px 0;
  color: #000000;
  line-height: 1.1;
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth color and transform effect */
}
.headline:hover {
  color: #20831f; /* Change color on hover */
  transform: translateY(-5px); /* Slight lift effect on hover */
}

.subheadline {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 30px;
  transition: color 0.3s ease; /* Smooth color transition */
}
.subheadline:hover {
  color: #20831f; /* Change color on hover */
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
}

.primary-hero-cta,
.secondary-hero-cta {
  padding: 15px 30px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
 
  transition: background-color 0.3s ease, transform 0.3s ease; /* Added smooth transition */
  display: inline-block;
}

.primary-hero-cta {
  background-color: #20831f; /* Primary color */
}

.secondary-hero-cta {
  background-color: #01b201; /* Secondary color */
}

.primary-hero-cta:hover {
  background-color: #01b201; /* Darker shade on hover */
  transform: translateY(-5px); /* Slight lift effect */
}

.secondary-hero-cta:hover {
  background-color: #01b201; /* Darker shade on hover */
  transform: translateY(-5px); /* Slight lift effect */
}

.small-support-text {
  font-size: 14px;
  color: #666666;
  margin-top: 20px;
  text-align: center;
}

/* Visual Content (Right Side) */
.visual-content {
  width: 50%; /* Adjust this based on the visual's size */
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out; /* Smooth transition */
}

.hero-illustration {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  transition: transform 0.3s ease-in-out; /* Smooth transition */
}
.hero-illustration:hover {
  transform: scale(1.1); /* Zoom effect on hover */
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column; /* Stack content vertically on mobile */
    padding: 40px 20px; /* Reduce padding on mobile */
    height: auto; /* Let the section adjust height based on content */
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
  }

  .text-content {
    width: 100%; /* Take full width on mobile */
    text-align: center;
    padding: 0;
    margin-bottom: 20px;
  }

  .headline {
    font-size: 36px; /* Scale down headline for smaller screens */
    margin: 20px 0;
  }

  .subheadline {
    font-size: 16px; /* Slightly smaller font size */
    margin-bottom: 20px;
  }

  .hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .primary-hero-cta,
  .secondary-hero-cta {
    padding: 12px 20px;
    font-size: 16px;
    min-width: 100%; /* Full width on mobile for buttons */
  }

  .small-support-text {
    font-size: 12px; /* Smaller font size */
    text-align: center;
  }

  .visual-content {
    width: 100%; /* Take full width on mobile */
    margin-top: 20px;
  }

  .hero-illustration {
    width: 80%; /* Scale image down for mobile */
    margin: 0 auto;
  }
}

/* Very Small Devices (max-width: 480px) */
@media (max-width: 480px) {
  .hero-section {
    padding: 30px 15px;
  }

  .headline {
    font-size: 30px; /* Further scale headline for very small screens */
  }

  .subheadline {
    font-size: 14px; /* Smaller font size */
  }

  .hero-cta-buttons {
    gap: 10px;
  }

  .primary-hero-cta,
  .secondary-hero-cta {
    padding: 10px 18px;
    font-size: 14px;
  }

  .small-support-text {
    font-size: 10px; /* Even smaller font size */
    text-align: center;
  }

  .hero-illustration {
    width: 70%; /* Scale image for very small screens */
  }
}
























/* ===================== Trust Strip / Quick Proof Band ===================== */
.trust-strip {
  background-color: #f3f3f3; /* Light gray background */
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Soft shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
  margin-top: 60px;
}
.trust-strip:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1); /* More pronounced shadow on hover */
}


.trust-strip-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto; /* Center the section */
  gap: 30px;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

/* Trust Item (icon + text) */
.trust-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 22%; /* Ensures compact design, adjust as needed */
  min-width: 160px; /* Minimum width to prevent too narrow columns */
  transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for hover effects */
}

.trust-item:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

.trust-icon {
  width: 50px; /* Icon size */
  height: 50px; /* Icon size */
  margin-bottom: 10px; /* Space between icon and text */
  transition: transform 0.3s ease; /* Smooth transition for icon zoom */

}

.trust-item:hover .trust-icon {
  transform: scale(1.2); /* Zoom effect on icon */
}

.trust-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease; /* Smooth transition for text color change */
}
.trust-item:hover .trust-text {
  color: #20831f; /* Change text color on hover */
}
/* Mobile and Smaller Devices */
@media (max-width: 768px) {
  .trust-strip-content {
    gap: 20px;
    flex-direction: column; /* Stack items vertically */
    padding: 0 20px; /* Adjust padding */
  }

  .trust-item {
    width: 100%; /* Full width for each item on mobile */
    margin-bottom: 15px; /* Add space between stacked items */
  }

  .trust-icon {
    width: 40px; /* Smaller icon size for mobile */
    height: 40px;
  }

  .trust-text {
    font-size: 14px; /* Slightly smaller text on mobile */
  }
}

@media (max-width: 480px) {
  .trust-item {
    width: 100%; /* Full width for even smaller devices */
  }

  .trust-icon {
    width: 35px;
    height: 35px;
  }

  .trust-text {
    font-size: 12px; /* Smaller font size for very small screens */
  }
}






























































/* ===================== What We Do (Core Positioning) ===================== */
.what-we-do {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
  transition: transform 0.3s ease;
  margin-top: 60px;
}
.what-we-do:hover {
  transform: translateY(-5px); /* Slight lift effect on hover */
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #20831f;
  margin-bottom: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.section-title p {
  font-size: 18px;
  color: #20831f;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.section-title h2:hover {
  color: #20831f; /* Change color on hover */
  transform: scale(1.05); /* Slight zoom effect */
}
.section-title p:hover {
  color: #20831f; /* Darker text color on hover */
}
/* Card Container */
.what-we-do-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap; /* Wrap on smaller screens */
  max-width: 1200px;
  margin: 0 auto;
}

.source-card,
.prepare-card,
.place-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

.source-card:hover,
.prepare-card:hover,
.place-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  background-color: #eef7ff;
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.source-card:hover .card-icon,
.prepare-card:hover .card-icon,
.place-card:hover .card-icon {
  transform: scale(1.2); /* Zoom effect on icon */
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #20831f;
  margin-bottom: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.source-card:hover .card-title,
.prepare-card:hover .card-title,
.place-card:hover .card-title {
  color: #20831f; /* Change color on hover */
  transform: translateY(-5px);
}

.card-text {
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.source-card:hover .card-text,
.prepare-card:hover .card-text,
.place-card:hover .card-text {
  color: #20831f; /* Darker text color on hover */
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .what-we-do {
    padding: 40px 20px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 16px;
    max-width: 90%;
  }

  .what-we-do-cards {
    gap: 20px;
  }

  .source-card,
  .prepare-card,
  .place-card {
    width: 100%;
    padding: 15px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-text {
    font-size: 14px;
  }
}

/* Small Mobile View (max-width: 480px) */
@media (max-width: 480px) {
  .what-we-do {
    padding: 30px 10px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 14px;
    max-width: 95%;
  }

  .what-we-do-cards {
    gap: 15px;
  }

  .source-card,
  .prepare-card,
  .place-card {
    width: 100%;
    padding: 12px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-text {
    font-size: 13px;
  }
}





















/* ===================== Candidate & Employer Insights ===================== */
.candidate-employer-insights {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
  margin-top: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 40px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.section-title h2:hover {
  color: #20831f;
  transform: scale(1.05); /* Slight zoom effect */
}

.insight-cards-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Insight Card Styling */
.candidate-card,
.employer-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 48%;
  min-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.candidate-card:hover,
.employer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.insight-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.candidate-card:hover .insight-icon,
.employer-card:hover .insight-icon {
  transform: scale(1.2); /* Zoom effect on icon */
}

.insight-title {
  font-size: 24px;
  font-weight: 700;
  color: #20831f;
  margin-bottom: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.candidate-card:hover .insight-title,
.employer-card:hover .insight-title {
  color: #01b201; /* Change color on hover */
  transform: translateY(-5px);
}

.insight-text {
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.candidate-card:hover .insight-text,
.employer-card:hover .insight-text {
  color: #555555; /* Darker text color on hover */
}

.insight-cta {
  display: inline-block;
  padding: 12px 20px;
  background-color: #20831f;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
   transition: background-color 0.3s ease, transform 0.3s ease;
  
}

.insight-cta:hover {
  background-color: #01b201;
  transform: translateY(-5px);
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .candidate-employer-insights {
    padding: 40px 20px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .insight-cards-container {
    gap: 20px;
  }

  .candidate-card,
  .employer-card {
    width: 100%;
    padding: 20px;
  }

  .insight-title {
    font-size: 20px;
  }

  .insight-text {
    font-size: 14px;
  }

  .insight-cta {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* Small Mobile View (max-width: 480px) */
@media (max-width: 480px) {
  .candidate-employer-insights {
    padding: 30px 10px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .insight-cards-container {
    gap: 15px;
  }

  .candidate-card,
  .employer-card {
    padding: 15px;
  }

  .insight-title {
    font-size: 18px;
  }

  .insight-text {
    font-size: 12px;
  }

  .insight-cta {
    padding: 8px 15px;
    font-size: 12px;
  }
}



















/* ===================== Candidate Progression Journey ===================== */
.candidate-progression-journey {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  margin-top: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.section-title p {
  font-size: 18px;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.journey-timeline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Step Card Styling */
.journey-step-one,
.journey-step-two,
.journey-step-three,
.journey-step-four,
.journey-step-five,
.journey-step-six {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
  min-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-step-one:hover,
.journey-step-two:hover,
.journey-step-three:hover,
.journey-step-four:hover,
.journey-step-five:hover,
.journey-step-six:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.step-number {
  background-color: #20831f;
  color: white;
  font-size: 24px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #20831f;
  margin-bottom: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.step-content h3:hover {
  background-color: #eef7ff; /* Light background color on hover */
  transform: translateY(-5px); /* Slight lift effect on hover */
  color: #01b201; /* Change text color on hover */
}
.step-content p {
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.step-content p:hover {
  color: #01b201; /* Darker text color on hover */
}
/* Arrows Between Steps (Desktop) */
.journey-step-one:not(:last-child)::after,
.journey-step-two:not(:last-child)::after,
.journey-step-three:not(:last-child)::after,
.journey-step-four:not(:last-child)::after,
.journey-step-five:not(:last-child)::after,
.journey-step-six:not(:last-child)::after {
  content: '→';
  font-size: 24px;
  color: #01b201;
  margin-left: 20px;
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .candidate-progression-journey {
    padding: 40px 20px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 16px;
    max-width: 90%;
  }

  .journey-timeline {
    gap: 20px;
    flex-direction: column; /* Stack steps vertically on small screens */
  }

  .journey-step-one,
  .journey-step-two,
  .journey-step-three,
  .journey-step-four,
  .journey-step-five,
  .journey-step-six {
    width: 100%;
    padding: 20px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
  }

  .journey-step-one:not(:last-child)::after,
  .journey-step-two:not(:last-child)::after,
  .journey-step-three:not(:last-child)::after,
  .journey-step-four:not(:last-child)::after,
  .journey-step-five:not(:last-child)::after,
  .journey-step-six:not(:last-child)::after {
    content: '';
  }
}

/* Small Mobile View (max-width: 480px) */
@media (max-width: 480px) {
  .candidate-progression-journey {
    padding: 30px 10px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 14px;
    max-width: 95%;
  }

  .journey-timeline {
    gap: 15px;
  }

  .journey-step-one,
  .journey-step-two,
  .journey-step-three,
  .journey-step-four,
  .journey-step-five,
  .journey-step-six {
    padding: 15px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 12px;
  }

  .journey-step-one:not(:last-child)::after,
  .journey-step-two:not(:last-child)::after,
  .journey-step-three:not(:last-child)::after,
  .journey-step-four:not(:last-child)::after,
  .journey-step-five:not(:last-child)::after,
  .journey-step-six:not(:last-child)::after {
    content: '';
  }
}























/* ===================== Career Launchpad ===================== */
.career-launchpad {
  padding: 60px 20px;
  background-color: #f4f7fb; /* Light background */
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}

.section-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  max-width: 1200px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.section-content:hover {
  transform: translateY(-5px); /* Slight lift on hover */
}

/* Left Content */
.left-content {
  width: 45%;
  text-align: left;
  padding: 25px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.left-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.left-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.left-content p {
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.left-content h2:hover {
  color: #01b201; /* Change color on hover */
  transform: scale(1.05); /* Slight zoom effect */
}

.benefits-list {
  font-size: 16px;
  color: #01b201;
  list-style: none;
  margin-bottom: 30px;
}

.benefits-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  transition: color 0.3s ease;
}

.benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #01b201;
  font-size: 18px;
}

.benefits-list li:hover {
  color: #20831f; /* Highlight benefits on hover */
}

.cta-button11 {
  display: inline-block;
  padding: 14px 24px;
  background-color: #20831f;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button11:hover {
  background-color: #01b201;
  transform: translateY(-8px); /* Button hover effect */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.small-text {
  font-size: 14px;
  color: #777777;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.small-text:hover {
  color: #01b201;
}

/* Right Content (Feature Card or Mockup) */
.right-content {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
}

.right-content:hover {
  transform: scale(1.03); /* Slight zoom effect on hover */
}

.feature-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-mockup:hover {
  transform: scale(1.05); /* Zoom effect on hover */
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .career-launchpad {
    padding: 40px 20px;
  }

  .section-content {
    gap: 20px;
  }

  .left-content {
    width: 100%;
    text-align: center;
  }

  .left-content h2 {
    font-size: 28px;
  }

  .left-content p {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 14px;
  }

  .right-content {
    width: 100%;
    margin-top: 20px;
  }

  .feature-mockup {
    width: 80%; /* Scale down the image for mobile */
  }
}

/* Small Mobile View (max-width: 480px) */
@media (max-width: 480px) {
  .career-launchpad {
    padding: 30px 10px;
  }

  .left-content h2 {
    font-size: 24px;
  }

  .left-content p {
    font-size: 14px;
  }

  .cta-button {
    padding: 10px 15px;
    font-size: 12px;
  }

  .small-text {
    font-size: 12px;
  }

  .right-content {
    width: 100%;
    margin-top: 20px;
  }

  .feature-mockup {
    width: 70%; /* Scale down further for small devices */
  }
}






















/* General section styles */
/* ===================== Employer Value Section ===================== */
/* ===================== Employer Value Section ===================== */
.employer-value-new-section {
  padding: 60px 20px;
  background-color: #f4f7fb; /* Light background */
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}

.employer-value-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.employer-value-container:hover {
  transform: translateY(-5px); /* Slight lift on hover */
}

/* Left Content - Visual Block (Image) */
.employer-value-visual-block {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
}

.employer-value-visual-block:hover {
  transform: scale(1.03); /* Slight zoom effect on hover */
}

.employer-value-visual-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.employer-value-visual-image:hover {
  transform: scale(1.05); /* Zoom effect on hover */
}

/* Right Content - Text Block */
.employer-value-text-block {
  width: 45%;
  text-align: left;
  padding: 25px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.employer-value-text-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.employer-value-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.employer-value-section-text {
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.employer-value-section-title:hover {
  color: #01b201; /* Change color on hover */
  transform: scale(1.05); /* Slight zoom effect */
}

.employer-value-bullet-points {
  font-size: 16px;
  color: #01b201;
  list-style: none;
  margin-bottom: 30px;
}

.employer-value-bullet-points li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  transition: color 0.3s ease;
}

.employer-value-bullet-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #01b201;
  font-size: 18px;
}

.employer-value-bullet-points li:hover {
  color: #20831f; /* Highlight bullet points on hover */
}

.employer-value-cta-button {
  display: inline-block;
  padding: 14px 24px;
  background-color: #20831f;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.employer-value-cta-button:hover {
  background-color: #01b201;
  transform: translateY(-8px); /* Button hover effect */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.employer-value-optional-line {
  font-size: 14px;
  color: #777777;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.employer-value-optional-line:hover {
  color: #01b201;
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  .employer-value-new-section {
    padding: 40px 20px;
  }

  .employer-value-container {
    gap: 20px;
  }

  .employer-value-visual-block {
    width: 100%;
    text-align: center;
  }

  .employer-value-text-block {
    width: 100%;
    text-align: center;
  }

  .employer-value-text-block h2 {
    font-size: 28px;
  }

  .employer-value-text-block p {
    font-size: 16px;
  }

  .employer-value-cta-button {
    padding: 12px 20px;
    font-size: 14px;
  }

  .employer-value-visual-image {
    width: 80%; /* Scale down the image for mobile */
  }
}

/* Small Mobile View (max-width: 480px) */
@media (max-width: 480px) {
  .employer-value-new-section {
    padding: 30px 10px;
  }

  .employer-value-text-block h2 {
    font-size: 24px;
  }

  .employer-value-text-block p {
    font-size: 14px;
  }

  .employer-value-cta-button {
    padding: 10px 15px;
    font-size: 12px;
  }

  .employer-value-optional-line {
    font-size: 12px;
  }

  .employer-value-visual-block {
    width: 100%;
    margin-top: 20px;
  }

  .employer-value-visual-image {
    width: 70%; /* Scale down further for small devices */
  }
}



















/* General section styles */
.sectors-we-serve {
  padding: 40px 20px;
  background-color: #f9f9f9;  /* Optional background color */
  transition: transform 0.3s ease;
  margin-top: 60px;
}

.sectors-we-serve:hover {
  transform: translateY(-5px); /* Slight lift for section on hover */
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.section-title111:hover {
  color: #01b201
; /* Change title color on hover */
}
.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Card container styles */
.card-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition: transform 0.3s ease;
}
.card-container:hover {
  transform: translateY(-5px); /* Lift container when hovered */
}
/* Card styles */
.card {
  width: 48%;  /* Takes 48% of the width */
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
.card:hover {
  transform: translateY(-8px); /* Slight lift effect on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Make sure transitions happen smoothly */
}
.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Highlighted Pharma card */
.pharma-card {
  background-color: #e0f7fa;  /* Slightly emphasized color */
  border-left: 5px solid #007BFF; /* Emphasize the left side */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pharma-card:hover {
  transform: translateY(-8px); /* Lift the pharma card on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

/* Responsive styles */
@media (max-width: 768px) {
  .card {
    width: 100%;  /* Stack cards on smaller screens */
    margin-bottom: 30px;  /* Space between stacked cards */
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.4rem;  /* Smaller title for very small screens */
  }

  .card-title {
    font-size: 1.3rem;  /* Adjust card title font size */
  }
}


































/* General section styles */
.ai-section {
  padding: 40px 20px;
  background-color: #f4f4f4;  /* Light background for the section */
  text-align: center;
  transition: transform 0.3s ease;
  margin-top: 60px;
}
.ai-section:hover {
  transform: translateY(-5px);  /* Slight lift on hover */
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.container:hover {
  transform: translateY(-5px);  /* Lift container on hover */
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.section-title:hover {
  color: #01b201; /* Change title color */
  transform: scale(1.05); /* Slight zoom effect */
}
.section-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
   transition: color 0.3s ease;
}
.section-text:hover {
  color: #01b201;  /* Change text color on hover */
}

.ai-illustration {
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.ai-illustration:hover {
  transform: scale(1.03);  /* Zoom effect for illustration */
}

.ai-image {
  width: 100%;
  max-width: 400px;  /* Ensure the image doesn't become too large */
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
.ai-image:hover {
  transform: scale(1.05);  /* Zoom effect on hover */
}

.feature-chips {
  display: flex;
  justify-content: center;
  gap: 15px;
  transition: transform 0.3s ease;
}
.feature-chips:hover {
  transform: translateY(-5px);  /* Slight lift for container */
}
.feature-chip {
  background-color: #01b201;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.feature-chip:hover {
  background-color: #20831f;  /* Change background color on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Responsive styles */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .ai-image {
    max-width: 80%;
  }

  .feature-chips {
    flex-wrap: wrap;
    gap: 10px;
  }

  .feature-chip {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .ai-image {
    max-width: 100%;
  }

  .feature-chip {
    font-size: 0.7rem;
    padding: 8px 12px;
  }
}























/* General section styles */
.unique-differentiation-section {
  padding: 50px 20px;
  background-color: #f7f7f7; /* Light background for the section */
  text-align: center;
  transition: transform 0.3s ease;
  margin-top: 60px;
}
.unique-differentiation-section:hover {
  transform: translateY(-5px);  /* Slight lift on hover */
}
.unique-container {
  max-width: 1200px;
  margin: 0 auto;
   transition: transform 0.3s ease;
}
.unique-container:hover {
  transform: translateY(-5px);  /* Lift container on hover */
}
.unique-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
  transition: color 0.3s ease, transform 0.3s ease;
}

.unique-section-title:hover {
  color: #20831f; /* Change color */
  transform: scale(1.05); /* Slight zoom effect */
}

/* Card container styles */
.unique-card-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  transition: transform 0.3s ease;
}
.unique-card-container:hover {
  transform: translateY(-5px); /* Slight lift for container */
}
/* Unique card styles */
.unique-card {
  width: 22%; /* 4 cards in a row, each card takes 22% width */
  padding: 25px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.unique-card:hover {
  transform: translateY(-5px); /* Slight lift effect */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}
.unique-card-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.unique-card-icon:hover {
  transform: scale(1.1); /* Slight zoom effect */
}
.unique-card-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #20831f;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Unique card hover effect */
.unique-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Responsive styles */
@media (max-width: 768px) {
  .unique-card {
    width: 45%; /* Cards take up more width on smaller screens */
    margin-bottom: 20px; /* Space between cards */
  }
}

@media (max-width: 480px) {
  .unique-card {
    width: 100%; /* Cards stack vertically on very small screens */
    margin-bottom: 20px; /* Space between cards */
  }

  .unique-section-title {
    font-size: 1.7rem; /* Adjust title size for smaller screens */
  }
}























/* General section styles */
.unique-final-conversion-section {
  width: 100%;
  background-color: #f4f4f4;  /* Light neutral background */
  color: black;  /* Text color changed to black for better contrast */
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
}

.unique-container {
  max-width: 1200px;
  margin: 0 auto;
}

.unique-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.unique-section-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #333;  /* Dark text color for readability */
  line-height: 1.6;
}

/* Button container styles */
.unique-buttons-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Button styles */
.unique-button {
  display: inline-block;
  background-color: #20831f;  /* Button background color */
  color: white;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.unique-button:hover {
  background-color: #01b201;  /* Darker shade of button on hover */
  transform: scale(1.05);  /* Subtle scaling effect on hover */
}

/* Responsive styles */
@media (max-width: 768px) {
  .unique-section-title {
    font-size: 2rem;
  }

  .unique-section-text {
    font-size: 1rem;
  }

  .unique-buttons-container {
    flex-direction: column;
    gap: 20px;
  }

  .unique-button {
    width: 100%;  /* Buttons take up full width on smaller screens */
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .unique-section-title {
    font-size: 1.8rem;
  }

  .unique-section-text {
    font-size: 0.95rem;
  }
}






























/* General footer styles */
.unique-footer-section {
  background-color: #2c3e50;  /* Dark background for footer */
  color: white;
  padding: 60px 20px;
  margin-top: 60px;
}

.unique-container {
  max-width: 1200px;
  margin: 0 auto;
}

.unique-footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;  /* Ensures columns wrap on small screens */
}

.unique-footer-column {
  width: 22%;  /* 4 columns on desktop */
  box-sizing: border-box;
}

.unique-footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.unique-footer-description {
  font-size: 1rem;
  color: #bdc3c7;
}

.unique-footer-links,
.unique-footer-actions {
  list-style: none;
  padding: 0;
}

.unique-footer-link,
.unique-footer-action {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 10px;
  display: block;
}

.unique-footer-link:hover,
.unique-footer-action:hover {
  color: #01b200;  /* Hover effect */
}

.unique-footer-bottom {
  margin-top: 40px;
  text-align: center;
}

.unique-footer-copyright {
  font-size: 0.9rem;
  color: #bdc3c7;
  margin-bottom: 10px;
}

.unique-footer-legal {
  margin-bottom: 20px;
}

.unique-footer-legal-link {
  color: white;
  text-decoration: none;
  margin-right: 15px;
}

.unique-footer-legal-link:hover {
  color: #01b200;
}

.unique-footer-social {
  margin-top: 10px;
}

.unique-footer-social-icon {
  margin: 0 10px;
  display: inline-block;
}

.unique-footer-social-icon img {
  width: 30px;
  height: 30px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .unique-footer-column {
    width: 48%;  /* Stack columns 2 per row on medium screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .unique-footer-column {
    width: 100%;  /* Stack all columns on small screens */
    margin-bottom: 20px;
  }

  .unique-footer-logo {
    width: 100px;  /* Adjust logo size on small screens */
  }

  .unique-footer-links,
  .unique-footer-actions {
    text-align: center;
  }

  .unique-footer-legal {
    text-align: center;
    margin-top: 10px;
  }

  .unique-footer-social {
    text-align: center;
  }
}


















/* Floating button styles */
.unique-floating-ai-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;  /* Make sure the button is always on top */
  margin-top: 60px;
}

.unique-ai-btn {
  background-color: #01b200;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-ai-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.unique-ai-btn-text {
  white-space: nowrap;
}

.unique-ai-chat-modal {
  display: none;  /* Hidden by default */
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  width: 250px;
  padding: 15px;
  z-index: 999;
}

.unique-ai-chat-header {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

.unique-ai-chat-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.unique-quick-reply {
  background-color: #01b200;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.unique-quick-reply:hover {
  background-color: #01b201;
  transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
  .unique-ai-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .unique-ai-chat-modal {
    width: 230px;
  }
}

@media (max-width: 480px) {
  .unique-ai-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  .unique-ai-chat-modal {
    width: 200px;
  }
}





























/* page 2 */







/* ===== SECTION: Career Entry Gateway (Full CSS) ===== */
.careerEntryScreen {
  --career-green: #01b201;
  --career-green-dark: #20831f;
  --career-black: #0d1b0f;
  --career-text: #52645a;
  --career-border: rgba(1, 178, 1, 0.16);

  position: relative;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f5fff6 0%, #ffffff 45%, #efffee 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.careerEntryScreen,
.careerEntryScreen * {
  box-sizing: border-box;
}

.careerEntryScreen__bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.careerEntryScreen__bg--one {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -80px;
  background: rgba(1, 178, 1, 0.13);
}

.careerEntryScreen__bg--two {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: -90px;
  background: rgba(32, 131, 31, 0.12);
}

.careerEntryScreen__card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  border-radius: clamp(28px, 5vw, 44px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--career-border);
  box-shadow:
    0 40px 90px rgba(32, 131, 31, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
}

.careerEntryScreen__badge {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--career-green-dark);
  background: rgba(1, 178, 1, 0.08);
  border: 1px solid rgba(1, 178, 1, 0.14);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.careerEntryScreen__title {
  margin: 0;
  color: var(--career-black);
  font-size: clamp(36px, 7vw, 50px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.careerEntryScreen__description {
  max-width: 500px;
  margin: 22px auto 38px;
  color: var(--career-text);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
  font-weight: 500;
}

.careerEntryScreen__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.careerEntryScreen__button {
  min-height: 62px;
  padding: 16px 22px;
  border-radius: 20px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.careerEntryScreen__button:hover {
  transform: translateY(-3px);
}

.careerEntryScreen__button:focus-visible {
  outline: 4px solid rgba(1, 178, 1, 0.22);
  outline-offset: 4px;
}

.careerEntryScreen__button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--career-green), var(--career-green-dark));
  box-shadow: 0 18px 36px rgba(1, 178, 1, 0.32);
}

.careerEntryScreen__button--primary:hover {
  box-shadow: 0 24px 46px rgba(1, 178, 1, 0.42);
}

.careerEntryScreen__button--secondary {
  color: var(--career-green-dark);
  background: #ffffff;
  border: 1px solid rgba(32, 131, 31, 0.2);
  box-shadow: 0 16px 34px rgba(32, 131, 31, 0.08);
}

.careerEntryScreen__button--secondary:hover {
  background: #f4fff4;
  border-color: rgba(32, 131, 31, 0.34);
}

@media (max-width: 680px) {
  .careerEntryScreen {
    align-items: flex-start;
    padding: 24px 16px;
  }

  .careerEntryScreen__card {
    margin-top: 8vh;
  }

  .careerEntryScreen__actions {
    grid-template-columns: 1fr;
  }

  .careerEntryScreen__button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .careerEntryScreen__card {
    padding: 30px 20px;
  }

  .careerEntryScreen__description {
    margin-bottom: 30px;
  }
}























.hbManualCv {
  --green: #01b201;
  --greenDark: #20831f;
  --dark: #071607;
  --text: #52615a;
  --soft: #f3fff3;
  --border: rgba(1, 178, 1, 0.16);

  min-height: 100vh;
  padding: clamp(24px, 5vw, 72px);
  background:
    radial-gradient(circle at top right, rgba(1, 178, 1, 0.14), transparent 34%),
    linear-gradient(135deg, #f7fff8, #ffffff 45%, #efffee);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbManualCv,
.hbManualCv * {
  box-sizing: border-box;
}

.hbManualCv__shell {
  max-width: 1180px;
  margin: 0 auto;
}

.hbManualCv__header {
  max-width: 720px;
  margin-bottom: 34px;
}

.hbManualCv__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(1, 178, 1, 0.1);
  color: var(--greenDark);
  font-weight: 800;
  font-size: 14px;
}

.hbManualCv__title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(38px, 6vw, 50px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.hbManualCv__text {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
}

.hbManualCv__progress {
  margin-bottom: 26px;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(32, 131, 31, 0.08);
}

.hbManualCv__progressTop {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 14px;
}

.hbManualCv__progressTop strong {
  color: var(--greenDark);
}

.hbManualCv__progressTrack {
  height: 10px;
  border-radius: 999px;
  background: #eaf8ea;
  overflow: hidden;
}

.hbManualCv__progressFill {
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--green), var(--greenDark));
}

.hbManualCv__form {
  display: grid;
  gap: 22px;
}

.hbManualCv__step {
  padding: clamp(22px, 4vw, 36px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(32, 131, 31, 0.1);
  backdrop-filter: blur(18px);
}

.hbManualCv__step h2 {
  margin: 0 0 22px;
  color: var(--dark);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.hbManualCv__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hbManualCv__field {
  display: grid;
  gap: 8px;
}

.hbManualCv__field--full {
  grid-column: 1 / -1;
}

.hbManualCv__field span {
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}

.hbManualCv input,
.hbManualCv select,
.hbManualCv textarea {
  width: 100%;
  min-height: 56px;
  padding: 15px 17px;
  border-radius: 16px;
  border: 1px solid rgba(32, 131, 31, 0.16);
  background: #fbfffb;
  color: var(--dark);
  font-size: 15px;
  outline: none;
  transition: 0.22s ease;
}

.hbManualCv textarea {
  min-height: 130px;
  resize: vertical;
  grid-column: 1 / -1;
}

.hbManualCv input:focus,
.hbManualCv select:focus,
.hbManualCv textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 5px rgba(1, 178, 1, 0.12);
  background: #ffffff;
}

.hbManualCv__repeatBox {
  display: grid;
  gap: 16px;
}

.hbManualCv__smallBtn {
  width: fit-content;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(1, 178, 1, 0.1);
  color: var(--greenDark);
  font-weight: 850;
  cursor: pointer;
}

.hbManualCv__actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.hbManualCv__btn {
  min-height: 58px;
  padding: 15px 28px;
  border-radius: 18px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
}

.hbManualCv__btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--greenDark));
  box-shadow: 0 18px 36px rgba(1, 178, 1, 0.28);
}

.hbManualCv__btn--ghost {
  color: var(--greenDark);
  background: #ffffff;
  border: 1px solid rgba(32, 131, 31, 0.22);
}

@media (max-width: 760px) {
  .hbManualCv__grid {
    grid-template-columns: 1fr;
  }

  .hbManualCv__actions {
    flex-direction: column-reverse;
  }

  .hbManualCv__btn {
    width: 100%;
  }
}






















.hbAiCv {
  --green: #01b201;
  --greenDark: #20831f;
  --dark: #071607;
  --text: #52615a;
  --line: rgba(32, 131, 31, 0.18);

  min-height: 100vh;
  padding: clamp(24px, 5vw, 72px);
  background:
    radial-gradient(circle at left top, rgba(1, 178, 1, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff, #f3fff4);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbAiCv,
.hbAiCv * {
  box-sizing: border-box;
}

.hbAiCv__shell {
  max-width: 1240px;
  margin: 0 auto;
}

.hbAiCv__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.hbAiCv__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(1, 178, 1, 0.1);
  color: var(--greenDark);
  font-size: 14px;
  font-weight: 850;
}

.hbAiCv__title {
  max-width: 780px;
  margin: 0;
  color: var(--dark);
  font-size: clamp(38px, 6vw, 50px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.hbAiCv__text {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
}

.hbAiCv__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--greenDark);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(32, 131, 31, 0.1);
}

.hbAiCv__status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(1, 178, 1, 0.12);
}

.hbAiCv__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.hbAiCv__preview {
  padding: clamp(28px, 5vw, 56px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(32, 131, 31, 0.13);
}

.hbAiCv__cvHeader {
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(1, 178, 1, 0.2);
}

.hbAiCv__cvHeader h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(34px, 5vw, 44px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.hbAiCv__cvHeader p {
  margin: 12px 0 0;
  color: var(--text);
  line-height: 1.6;
}

.hbAiCv__cvSection {
  padding: 24px 0;
  border-bottom: 1px solid rgba(32, 131, 31, 0.12);
}

.hbAiCv__cvSection:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hbAiCv__cvSection h3 {
  margin: 0 0 12px;
  color: var(--greenDark);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 950;
}

.hbAiCv__cvSection p,
.hbAiCv__cvSection li {
  color: #263229;
  font-size: 16px;
  line-height: 1.75;
}

.hbAiCv__cvSection strong {
  color: var(--dark);
  font-size: 17px;
}

.hbAiCv__cvSection ul {
  margin: 0;
  padding-left: 20px;
}

.hbAiCv__actionsPanel {
  position: sticky;
  top: 24px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #ffffff, #f7fff7);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(32, 131, 31, 0.12);
}

.hbAiCv__actionsPanel h2 {
  margin: 0;
  color: var(--dark);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.hbAiCv__actionsPanel p {
  margin: 12px 0 24px;
  color: var(--text);
  line-height: 1.7;
}

.hbAiCv__btn {
  width: 100%;
  min-height: 58px;
  margin-bottom: 12px;
  padding: 15px 20px;
  border-radius: 18px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  transition: 0.25s ease;
}

.hbAiCv__btn:hover {
  transform: translateY(-3px);
}

.hbAiCv__btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--greenDark));
  box-shadow: 0 18px 36px rgba(1, 178, 1, 0.3);
}

.hbAiCv__btn--secondary {
  color: var(--greenDark);
  background: #ffffff;
  border: 1px solid rgba(32, 131, 31, 0.24);
}

.hbAiCv__btn--dark {
  color: #ffffff;
  background: var(--dark);
}

.hbAiCv__note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(1, 178, 1, 0.08);
  color: var(--greenDark);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hbAiCv__top {
    display: grid;
  }

  .hbAiCv__layout {
    grid-template-columns: 1fr;
  }

  .hbAiCv__actionsPanel {
    position: static;
  }
}

@media (max-width: 560px) {
  .hbAiCv,
  .hbManualCv {
    padding: 18px;
  }

  .hbAiCv__preview,
  .hbAiCv__actionsPanel {
    border-radius: 24px;
  }
}

@media print {
  .hbAiCv {
    background: #ffffff;
    padding: 0;
  }

  .hbAiCv__top,
  .hbAiCv__actionsPanel {
    display: none;
  }

  .hbAiCv__layout {
    display: block;
  }

  .hbAiCv__preview {
    box-shadow: none;
    border: 0;
    border-radius: 0;
  }
}

















/* page 3 */




.hbdHrHero {
  --brand: #01b201;
  --brandDark: #20831f;
  --dark: #071607;
  --text: #52645a;
  --border: rgba(1, 178, 1, 0.16);

  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(28px, 6vw, 90px);
  background:
    radial-gradient(circle at 85% 15%, rgba(1, 178, 1, 0.18), transparent 32%),
    linear-gradient(135deg, #f6fff6 0%, #ffffff 48%, #efffee 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbdHrHero,
.hbdHrHero * {
  box-sizing: border-box;
}

.hbdHrHero__container {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.hbdHrHero__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--brandDark);
  background: rgba(1, 178, 1, 0.1);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 850;
}

.hbdHrHero__title {
  max-width: 780px;
  margin: 0;
  color: var(--dark);
  font-size: clamp(44px, 7vw, 50px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.hbdHrHero__text {
  max-width: 610px;
  margin: 26px 0 36px;
  color: var(--text);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  font-weight: 500;
}

.hbdHrHero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 17px 32px;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brandDark));
  box-shadow: 0 22px 46px rgba(1, 178, 1, 0.34);
  transition: 0.25s ease;
}

.hbdHrHero__button:hover {
  transform: translateY(-3px);
}

.hbdHrHero__panel {
  display: grid;
  gap: 18px;
}

.hbdHrHero__stat {
  padding: clamp(20px, 4vw, 24px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(32, 131, 31, 0.12);
  backdrop-filter: blur(20px);
}

.hbdHrHero__stat:nth-child(2) {
  transform: translateX(-34px);
}

.hbdHrHero__stat strong {
  display: block;
  color: var(--dark);
  font-size: clamp(30px, 4vw, 30px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hbdHrHero__stat span {
  display: block;
  margin-top: 10px;
  color: var(--brandDark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .hbdHrHero {
    min-height: auto;
  }

  .hbdHrHero__container {
    grid-template-columns: 1fr;
  }

  .hbdHrHero__stat:nth-child(2) {
    transform: none;
  }
}























.hbdHrValue {
  --brand: #01b201;
  --brandDark: #20831f;
  --dark: #071607;
  --text: #52645a;
  --border: rgba(32, 131, 31, 0.15);

  padding: clamp(64px, 9vw, 130px) clamp(22px, 5vw, 72px);
  background: #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbdHrValue,
.hbdHrValue * {
  box-sizing: border-box;
}

.hbdHrValue__container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hbdHrValue__header {
  max-width: 780px;
  margin-bottom: 42px;
}

.hbdHrValue__label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(1, 178, 1, 0.09);
  color: var(--brandDark);
  font-size: 14px;
  font-weight: 850;
}

.hbdHrValue__title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(36px, 5vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.hbdHrValue__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hbdHrValue__card {
  min-height: 270px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f7fff7);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(32, 131, 31, 0.08);
  transition: 0.25s ease;
}

.hbdHrValue__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(32, 131, 31, 0.14);
}

.hbdHrValue__card span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 950;
}

.hbdHrValue__card h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.hbdHrValue__card p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  font-size: 15.5px;
}

@media (max-width: 1050px) {
  .hbdHrValue__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .hbdHrValue__grid {
    grid-template-columns: 1fr;
  }

  .hbdHrValue__card {
    min-height: auto;
  }
}
























.hbdHrSteps {
  --brand: #01b201;
  --brandDark: #20831f;
  --dark: #071607;
  --text: #52645a;
  --border: rgba(32, 131, 31, 0.15);

  padding: clamp(64px, 9vw, 130px) clamp(22px, 5vw, 72px);
  background:
    radial-gradient(circle at 20% 10%, rgba(1, 178, 1, 0.13), transparent 30%),
    linear-gradient(135deg, #f6fff6, #ffffff);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbdHrSteps,
.hbdHrSteps * {
  box-sizing: border-box;
}

.hbdHrSteps__container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hbdHrSteps__header {
  max-width: 780px;
  margin-bottom: 44px;
}

.hbdHrSteps__label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(1, 178, 1, 0.1);
  color: var(--brandDark);
  font-size: 14px;
  font-weight: 850;
}

.hbdHrSteps__title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(36px, 5vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.hbdHrSteps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hbdHrSteps__item {
  position: relative;
  min-height: 285px;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 26px 72px rgba(32, 131, 31, 0.1);
  overflow: hidden;
}

.hbdHrSteps__item::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: rgba(1, 178, 1, 0.08);
}

.hbdHrSteps__item strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 56px;
  height: 56px;
  margin-bottom: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brandDark));
  box-shadow: 0 16px 34px rgba(1, 178, 1, 0.28);
}

.hbdHrSteps__item h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.hbdHrSteps__item p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .hbdHrSteps__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .hbdHrSteps__list {
    grid-template-columns: 1fr;
  }

  .hbdHrSteps__item {
    min-height: auto;
  }
}






























.hbdHrForm {
  --brand: #01b201;
  --brandDark: #20831f;
  --dark: #071607;
  --text: #52645a;
  --border: rgba(32, 131, 31, 0.16);

  padding: clamp(64px, 9vw, 130px) clamp(22px, 5vw, 72px);
  background:
    radial-gradient(circle at right top, rgba(1, 178, 1, 0.15), transparent 32%),
    linear-gradient(135deg, #ffffff, #f2fff2);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbdHrForm,
.hbdHrForm * {
  box-sizing: border-box;
}

.hbdHrForm__container {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.hbdHrForm__content {
  position: sticky;
  top: 28px;
}

.hbdHrForm__label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(1, 178, 1, 0.1);
  color: var(--brandDark);
  font-size: 14px;
  font-weight: 850;
}

.hbdHrForm__title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(36px, 5vw, 50px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.hbdHrForm__text {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

.hbdHrForm__box {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: 0 36px 90px rgba(32, 131, 31, 0.14);
  backdrop-filter: blur(20px);
}

.hbdHrForm__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hbdHrForm__field {
  display: grid;
  gap: 8px;
}

.hbdHrForm__field--full {
  grid-column: 1 / -1;
}

.hbdHrForm__field span {
  color: var(--dark);
  font-size: 14px;
  font-weight: 850;
}

.hbdHrForm input,
.hbdHrForm textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(32, 131, 31, 0.18);
  background: #fbfffb;
  color: var(--dark);
  font-size: 15.5px;
  outline: none;
  transition: 0.22s ease;
}

.hbdHrForm textarea {
  min-height: 150px;
  resize: vertical;
}

.hbdHrForm input:focus,
.hbdHrForm textarea:focus {
  border-color: var(--brand);
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(1, 178, 1, 0.12);
}

.hbdHrForm__submit {
  width: 100%;
  min-height: 62px;
  margin-top: 20px;
  border: 0;
  border-radius: 20px;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--brand), var(--brandDark));
  box-shadow: 0 22px 46px rgba(1, 178, 1, 0.32);
  transition: 0.25s ease;
}

.hbdHrForm__submit:hover {
  transform: translateY(-3px);
}

@media (max-width: 920px) {
  .hbdHrForm__container {
    grid-template-columns: 1fr;
  }

  .hbdHrForm__content {
    position: static;
  }
}

@media (max-width: 620px) {
  .hbdHrForm__grid {
    grid-template-columns: 1fr;
  }

  .hbdHrForm__box {
    border-radius: 28px;
  }
}






/* page 4 */


.hbP4CandidateFlow {
  --hb-green: #01b201;
  --hb-green-dark: #20831f;
  --hb-dark: #071607;
  --hb-text: #52645a;
  --hb-border: rgba(32, 131, 31, 0.16);

  padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 15% 10%, rgba(1, 178, 1, 0.14), transparent 32%),
    linear-gradient(135deg, #f6fff6 0%, #ffffff 55%, #efffee 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbP4CandidateFlow,
.hbP4CandidateFlow * {
  box-sizing: border-box;
}

.hbP4CandidateFlow__container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hbP4CandidateFlow__header {
  max-width: 760px;
  margin-bottom: 44px;
}

.hbP4CandidateFlow__badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--hb-green-dark);
  background: rgba(1, 178, 1, 0.1);
  border: 1px solid rgba(1, 178, 1, 0.16);
  font-size: 14px;
  font-weight: 850;
}

.hbP4CandidateFlow__title {
  margin: 0;
  color: var(--hb-dark);
  font-size: clamp(36px, 5vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.hbP4CandidateFlow__text {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--hb-text);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
}

.hbP4CandidateFlow__diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.hbP4CandidateFlow__diagram::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 7%;
  right: 7%;
  height: 3px;
  background: linear-gradient(90deg, var(--hb-green), var(--hb-green-dark));
  opacity: 0.25;
}

.hbP4CandidateFlow__step {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: 24px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--hb-border);
  box-shadow: 0 26px 70px rgba(32, 131, 31, 0.1);
  text-align: center;
  transition: 0.25s ease;
}

.hbP4CandidateFlow__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 86px rgba(32, 131, 31, 0.15);
}

.hbP4CandidateFlow__step span {
  width: 58px;
  height: 58px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--hb-green), var(--hb-green-dark));
  box-shadow: 0 16px 34px rgba(1, 178, 1, 0.28);
  font-weight: 950;
}

.hbP4CandidateFlow__step h3 {
  margin: 0;
  color: var(--hb-dark);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

@media (max-width: 1100px) {
  .hbP4CandidateFlow__diagram {
    grid-template-columns: repeat(3, 1fr);
  }

  .hbP4CandidateFlow__diagram::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .hbP4CandidateFlow__diagram {
    grid-template-columns: 1fr;
  }

  .hbP4CandidateFlow__step {
    min-height: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
  }

  .hbP4CandidateFlow__step span {
    margin: 0;
    flex: 0 0 58px;
  }
}


















.hbP4EmployerFlow {
  --hb-green: #01b201;
  --hb-green-dark: #20831f;
  --hb-dark: #071607;
  --hb-text: #52645a;
  --hb-border: rgba(32, 131, 31, 0.16);

  padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 85% 15%, rgba(1, 178, 1, 0.13), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f3fff3 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbP4EmployerFlow,
.hbP4EmployerFlow * {
  box-sizing: border-box;
}

.hbP4EmployerFlow__container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hbP4EmployerFlow__header {
  max-width: 760px;
  margin-bottom: 44px;
}

.hbP4EmployerFlow__badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--hb-green-dark);
  background: rgba(1, 178, 1, 0.1);
  border: 1px solid rgba(1, 178, 1, 0.16);
  font-size: 14px;
  font-weight: 850;
}

.hbP4EmployerFlow__title {
  margin: 0;
  color: var(--hb-dark);
  font-size: clamp(36px, 5vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.hbP4EmployerFlow__text {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--hb-text);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
}

.hbP4EmployerFlow__diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.hbP4EmployerFlow__diagram::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--hb-green), var(--hb-green-dark));
  opacity: 0.25;
}

.hbP4EmployerFlow__step {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: 24px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--hb-border);
  box-shadow: 0 26px 70px rgba(32, 131, 31, 0.1);
  text-align: center;
  transition: 0.25s ease;
}

.hbP4EmployerFlow__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 86px rgba(32, 131, 31, 0.15);
}

.hbP4EmployerFlow__step span {
  width: 58px;
  height: 58px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--hb-green), var(--hb-green-dark));
  box-shadow: 0 16px 34px rgba(1, 178, 1, 0.28);
  font-weight: 950;
}

.hbP4EmployerFlow__step h3 {
  margin: 0;
  color: var(--hb-dark);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

@media (max-width: 1100px) {
  .hbP4EmployerFlow__diagram {
    grid-template-columns: repeat(3, 1fr);
  }

  .hbP4EmployerFlow__diagram::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .hbP4EmployerFlow__diagram {
    grid-template-columns: 1fr;
  }

  .hbP4EmployerFlow__step {
    min-height: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
  }

  .hbP4EmployerFlow__step span {
    margin: 0;
    flex: 0 0 58px;
  }
}








/* page 5 */

.hbP5Why {
  --green: #01b201;
  --greenDark: #20831f;
  --dark: #071607;
  --text: #53645a;

  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 120px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 85% 15%, rgba(1, 178, 1, 0.16), transparent 34%),
    linear-gradient(135deg, #f6fff6, #ffffff 55%, #efffee);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbP5Why,
.hbP5Why * {
  box-sizing: border-box;
}

.hbP5Why__container {
  width: min(100%, 980px);
  margin: 0 auto;
}

.hbP5Why__badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(1, 178, 1, 0.1);
  color: var(--greenDark);
  font-size: 14px;
  font-weight: 850;
}

.hbP5Why__title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(44px, 7vw, 50px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.hbP5Why__text {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.65;
  font-weight: 500;
}





























.hbP5Approach {
  --green: #01b201;
  --greenDark: #20831f;
  --dark: #071607;
  --text: #53645a;
  --border: rgba(32, 131, 31, 0.15);

  padding: clamp(64px, 9vw, 130px) clamp(20px, 5vw, 72px);
  background: #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbP5Approach,
.hbP5Approach * {
  box-sizing: border-box;
}

.hbP5Approach__container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hbP5Approach__header {
  max-width: 780px;
  margin-bottom: 42px;
}

.hbP5Approach__badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(1, 178, 1, 0.09);
  color: var(--greenDark);
  font-size: 14px;
  font-weight: 850;
}

.hbP5Approach__title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(36px, 5vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.hbP5Approach__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hbP5Approach__card {
  min-height: 285px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f7fff7);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(32, 131, 31, 0.08);
  transition: 0.25s ease;
}

.hbP5Approach__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(32, 131, 31, 0.14);
}

.hbP5Approach__card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
}

.hbP5Approach__card h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.hbP5Approach__card p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  font-size: 15.5px;
}

@media (max-width: 1050px) {
  .hbP5Approach__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .hbP5Approach__grid {
    grid-template-columns: 1fr;
  }

  .hbP5Approach__card {
    min-height: auto;
  }
}






























.hbP5Focus {
  --green: #01b201;
  --greenDark: #20831f;
  --dark: #071607;
  --text: #53645a;
  --border: rgba(32, 131, 31, 0.16);

  padding: clamp(64px, 9vw, 130px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 20% 20%, rgba(1, 178, 1, 0.13), transparent 34%),
    linear-gradient(135deg, #f6fff6, #ffffff);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbP5Focus,
.hbP5Focus * {
  box-sizing: border-box;
}

.hbP5Focus__container {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.hbP5Focus__badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(1, 178, 1, 0.1);
  color: var(--greenDark);
  font-size: 14px;
  font-weight: 850;
}

.hbP5Focus__title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(36px, 5vw, 50px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.hbP5Focus__text {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

.hbP5Focus__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.hbP5Focus__card {
  min-height: 310px;
  padding: 32px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(32, 131, 31, 0.1);
}

.hbP5Focus__card--primary {
  background: linear-gradient(135deg, var(--green), var(--greenDark));
  color: #ffffff;
  transform: translateY(-18px);
}

.hbP5Focus__card span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--greenDark);
  font-size: 14px;
  font-weight: 900;
}

.hbP5Focus__card--primary span {
  color: rgba(255, 255, 255, 0.86);
}

.hbP5Focus__card h3 {
  margin: 0 0 12px;
  color: var(--dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hbP5Focus__card--primary h3 {
  color: #ffffff;
}

.hbP5Focus__card p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}

.hbP5Focus__card--primary p {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 920px) {
  .hbP5Focus__container {
    grid-template-columns: 1fr;
  }

  .hbP5Focus__card--primary {
    transform: none;
  }
}

@media (max-width: 620px) {
  .hbP5Focus__cards {
    grid-template-columns: 1fr;
  }

  .hbP5Focus__card {
    min-height: auto;
  }
}
















.hbP5Vision {
  --green: #01b201;
  --greenDark: #20831f;
  --dark: #071607;
  --text: #52645a;
  --border: rgba(32, 131, 31, 0.14);

  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 160px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at top right, rgba(1, 178, 1, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(32, 131, 31, 0.06), transparent 24%),
    linear-gradient(135deg, #f7fff7 0%, #ffffff 52%, #f2fff2 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hbP5Vision,
.hbP5Vision * {
  box-sizing: border-box;
}

.hbP5Vision::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(1, 178, 1, 0.06);
  filter: blur(10px);
}

.hbP5Vision::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(32, 131, 31, 0.05);
  filter: blur(10px);
}

.hbP5Vision__container {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.hbP5Vision__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--greenDark);
  background: rgba(1, 178, 1, 0.08);
  border: 1px solid rgba(1, 178, 1, 0.12);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hbP5Vision__title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(42px, 6vw, 50px);
  line-height: 0.94;
  letter-spacing: -0.08em;
  font-weight: 950;
}

.hbP5Vision__text {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--text);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.85;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hbP5Vision {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .hbP5Vision__title {
    line-height: 1;
  }

  .hbP5Vision__text {
    margin-top: 22px;
  }
}




















