.recruiters-hero-section {
  background-color: var(--color-bg-cream); /* Cream BG for warmth */
  padding: 80px 0;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

/* Left Side Content */
.recruiters-hero-badge {
  display: inline-block;
  background-color: rgba(0, 53, 43, 0.1);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recruiters-hero-heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 24px;
}

/* Target the span for the accent color */
.recruiters-hero-heading span {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

/* Optional: Underline effect for the accent word */
.recruiters-hero-heading span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 51, 0, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.recruiters-hero-subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 35px;
  max-width: 90%;
  line-height: 1.6;
}

/* Buttons */
.recruiters-hero-btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.recruiters-hero-btn-primary:hover {
  background-color: #00251e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 53, 43, 0.15);
}

.recruiters-hero-btn-secondary {
  color: var(--color-primary);
  font-weight: 600;
  padding: 15px 25px;
  text-decoration: none;
  transition: color 0.3s;
}
.recruiters-hero-btn-secondary:hover {
  color: var(--color-accent);
}

/* Right Side Image Wrapper */
.recruiters-hero-img-wrapper {
  position: relative;
  padding: 20px; /* Space for floating elements */
}

.recruiters-hero-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 20px 20px 0px rgba(0, 53, 43, 0.05); /* Offset shadow pattern */
  position: relative;
  z-index: 1;
}

/* Floating KPI Cards */
.recruiters-hero-kpi-card {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
  min-width: 220px;
  animation: floatHero 4s ease-in-out infinite;
}

/* KPI 1: Top Left */
.kpi-pos-1 {
  top: 60px;
  left: -20px;
}

/* KPI 2: Bottom Right */
.kpi-pos-2 {
  bottom: 60px;
  right: -20px;
  animation-delay: 2s; /* Offset animation */
}

.kpi-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.kpi-icon-green {
  background-color: rgba(0, 53, 43, 0.1);
  color: var(--color-primary);
}

.kpi-icon-orange {
  background-color: rgba(255, 51, 0, 0.1);
  color: var(--color-accent);
}

.kpi-text h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.kpi-text span {
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
}

/* Floating Animation */
@keyframes floatHero {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .recruiters-hero-heading {
    font-size: 2.5rem;
  }
  .recruiters-hero-img-wrapper {
    margin-top: 50px;
  }

  .recruiters-hero-main-img {
    height: 400px;
  }

  /* Adjust floating cards on mobile to not overlap too much */
  .kpi-pos-1 {
    top: 10px;
    left: 0;
  }
  .kpi-pos-2 {
    bottom: 10px;
    right: 0;
  }
}

.recruiters-why-section {
  background-color: #ffffff; /* Explicitly White */
  padding: 100px 0;
  overflow: hidden;
}

/* LEFT CONTENT */
.recruiters-why-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.recruiters-why-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 90%;
}

.recruiters-why-subheading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

/* Custom List */
.recruiters-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruiters-why-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: #4b5563;
}

.recruiters-why-list i {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* RIGHT SIDE - STAGGERED BENTO GRID */
.bento-wrapper {
  display: flex;
  gap: 24px;
}

.bento-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1; /* Each column takes 50% width */
}

.bento-card {
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* Subtle shadow for white bg */
}

.bento-card:hover {
  transform: translateY(-5px);
}

/* --- CARD HEIGHTS & STYLES --- */

/* 1. Image Card (Top Left) - TALL */
.card-img {
  background-image: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=1000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  height: 320px; /* Taller */
}

/* 2. Stat Card (Bottom Left) - SHORT */
.card-gray {
  background-color: #efffbf; /* Light Gray */
  height: 200px; /* Shorter */
  justify-content: center;
}

/* 3. Stat Card (Top Right) - SHORT + ACCENT */
.card-accent {
  background-color: #fff0eb; /* Light Orange Tint */
  height: 200px; /* Shorter */
  justify-content: center;
  border: 1px solid rgba(255, 51, 0, 0.1);
}

/* 4. Stat Card (Bottom Right) - TALL */
.card-beige {
  background-color: #ffeab3; /* Beige/Cream */
  height: 320px; /* Taller */
  justify-content: center;
}

/* Typography */
.bento-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

/* Make the accent card text pop slightly more */
.card-accent .bento-stat-number {
  color: var(--color-accent);
}

.bento-stat-label {
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
}

/* Avatars */
.bento-avatars {
  display: flex;
  margin-top: 20px;
}
.bento-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -12px;
  object-fit: cover;
}
.bento-avatars img:first-child {
  margin-left: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .bento-wrapper {
    flex-direction: column; /* Stack columns on mobile */
  }
  .bento-card {
    height: 250px !important; /* Equal height on mobile */
  }
}

.recruiters-collab-section {
  background-color: var(--color-bg-cream); /* Light Background */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header Text */
.recruiters-collab-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.recruiters-collab-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.recruiters-collab-subtitle {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Form Card */
.recruiters-collab-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 53, 43, 0.08); /* Soft shadow */
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
}

/* Custom Input Styling */
.recruiters-form-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-primary);
  margin-bottom: 8px;
  display: block;
}

.recruiters-form-control,
.recruiters-form-select {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: #333;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* FOCUS STATE: Orange Accent */
.recruiters-form-control:focus,
.recruiters-form-select:focus {
  outline: none;
  border-color: var(--color-accent); /* ORANGE BORDER */
  box-shadow: 0 0 0 4px rgba(255, 51, 0, 0.1); /* ORANGE GLOW */
}

.recruiters-form-control::placeholder {
  color: #aaa;
  font-weight: 400;
}

/* Submit Button */
.recruiters-btn-submit {
  background-color: var(--color-primary); /* Dark Green Button */
  color: white;
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s;
  margin-top: 20px;
}

.recruiters-btn-submit:hover {
  background-color: #00251e; /* Slightly darker on hover */
  transform: translateY(-2px);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .recruiters-collab-card {
    padding: 30px 20px;
  }
  .recruiters-collab-title {
    font-size: 2rem;
  }
}

.status-success {
  color: greenyellow;
  background-color: #e6f0ee;
  border: 1px solid #00352b;
}

.status-error {
  color: red;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

