/* ====================================================
ROOT VARIABLES
==================================================== */
:root {
  --burgundy: #462b34;
  --red: #ba2325;
  --light-red: #a03232;
  --cream: #f0e6e0;
  --border: #eae0d9;
  --body-text: #766068;
  --muted: #9e848d;
  --dark-bg: #3a2028;
  --medium-bg: #3f262f;
  --light-bg: #fcf9f7;
  --white: #ffffff;
  --font-main: "Nunito Sans", sans-serif;
  --font-disp: "Playfair Display", serif;
  --nav-h: 80px;
  --trans: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 8px 40px rgba(70, 43, 52, 0.13);
  --shadow-deep: 0 20px 60px rgba(70, 43, 52, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

.boxed_wrapper {
  overflow: visible !important;
  overflow-x: clip !important;
}

.auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.page-body {
  padding-top: var(--nav-h);
}

/* ====================================================
READING BAR + SCROLL TOP
==================================================== */
.reading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--burgundy));
  z-index: 10001;
  width: 0%;
  pointer-events: none;
}

/* .scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 900;
}

.scroll-top-btn.show {
  opacity: 1;
  transform: none;
}

.scroll-top-btn:hover {
  background: var(--burgundy);
} */

/* ====================================================
REVEAL ANIMATIONS
==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-l.in {
  opacity: 1;
  transform: none;
}

.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-r.in {
  opacity: 1;
  transform: none;
}

.reveal-s {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-s.in {
  opacity: 1;
  transform: scale(1);
}

[data-d="1"] {
  transition-delay: 0.08s;
}

[data-d="2"] {
  transition-delay: 0.16s;
}

[data-d="3"] {
  transition-delay: 0.24s;
}

[data-d="4"] {
  transition-delay: 0.32s;
}

[data-d="5"] {
  transition-delay: 0.4s;
}

[data-d="6"] {
  transition-delay: 0.48s;
}

[data-d="7"] {
  transition-delay: 0.56s;
}

[data-d="8"] {
  transition-delay: 0.64s;
}
.page-title {
  padding: 50px 0 80px 0 !important;
}

/* ====================================================
SECTION 2 — WHY JOIN (BENEFITS)
==================================================== */
.benefits-section {
  padding: 88px 0 80px;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.benefit-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.4s;
}

.benefit-card:hover {
  border-color: rgba(186, 35, 37, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.benefit-card:hover::before {
  width: 100%;
}

.bc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(186, 35, 37, 0.1),
    rgba(70, 43, 52, 0.07)
  );
  border: 1.5px solid rgba(186, 35, 37, 0.15);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: all 0.4s;
  color: var(--red);
}

.benefit-card:hover .bc-icon {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: scale(1.08);
}

.bc-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--burgundy);
  margin-bottom: 6px;
}

.bc-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

.benefits-cta {
  text-align: center;
}

/* ====================================================
SECTION 3 — RESPONSIBILITIES
==================================================== */
.responsibilities-section {
  padding: 88px 0;
  /* background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-bg) 100%); */
  position: relative;
  overflow: hidden;

  position: relative;
  padding: 70px 20px;
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-36.png") no-repeat center center;
  background-size: cover;
}

/* .resp-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(240, 230, 224, 0.04) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  pointer-events: none;
} */
/* 
.resp-glow {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(186, 35, 37, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
} */

.resp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.resp-img-wrap {
  position: relative;
}

.resp-img-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.resp-img-card img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* Floating badge on image */
.resp-float-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--red);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(186, 35, 37, 0.35);
  z-index: 3;
}

.rfb-val {
  font-family: var(--font-disp);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.rfb-lbl {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.resp-content .sec-tag::before,
.resp-content .sec-tag::after {
  background: rgba(186, 35, 37, 0.5);
}

.resp-content .sec-title-main {
  color: #fff;
}

.resp-content .sec-title-main em {
  color: #f9b4b5;
}

.resp-intro {
  font-size: 15px;
  color: rgba(240, 230, 224, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.resp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.resp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.35s;
}

.resp-item:hover {
  background: white;
  border-color: rgba(186, 35, 37, 0.3);
  transform: translateX(5px);
  color: black;
}

.resp-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(186, 35, 37, 0.25);
  border: 1px solid rgba(186, 35, 37, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: white;
  transition: all 0.35s;
}

.resp-item:hover .resp-item-icon {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.resp-item-text {
  font-size: 14px;
  color: white;
  line-height: 1.6;
  font-weight: 600;
}

.resp-item:hover .resp-item-text {
  color: black;
}
/* ====================================================
SECTION 4 — HOW IT WORKS (TIMELINE)
==================================================== */
.workflow-section {
  padding: 88px 0;
  background: var(--light-bg);
}

.workflow-header {
  text-align: center;
  margin-bottom: 64px;
}

.workflow-header .sec-sub {
  margin: 0 auto;
}

.workflow-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* central vertical line */
.workflow-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--border) 10%,
    var(--border) 90%,
    transparent
  );
  transform: translateX(-50%);
}

.wf-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}

.wf-step:last-child {
  margin-bottom: 0;
}

.wf-step.right {
  flex-direction: row-reverse;
}

/* step content box */
.wf-content {
  width: calc(50% - 44px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 4px 20px rgba(70, 43, 52, 0.06);
  transition: all 0.4s;
  position: relative;
}

.wf-content::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  transform: rotate(45deg);
  transition: border-color 0.4s;
}

.wf-step:not(.right) .wf-content::after {
  right: -10px;
  border-left: none;
  border-bottom: none;
}

.wf-step.right .wf-content::after {
  left: -10px;
  border-right: none;
  border-top: none;
}

.wf-content:hover {
  border-color: rgba(186, 35, 37, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.wf-content:hover::after {
  border-color: rgba(186, 35, 37, 0.25);
}

.wf-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.wf-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--burgundy);
  margin-bottom: 5px;
}

.wf-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* center circle node */
.wf-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  width: 44px;
  height: 44px;
  background: var(--burgundy);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(70, 43, 52, 0.25);
  z-index: 2;
  transition: all 0.4s;
  font-family: var(--font-disp);
}

.wf-step:hover .wf-node {
  background: var(--red);
  transform: translateX(-50%) scale(1.12);
}

/* spacer on opposite side */
.wf-spacer {
  width: calc(50% - 44px);
}

.workflow-cta {
  text-align: center;
  margin-top: 56px;
}

/* ====================================================
SECTION 6 — INCENTIVE / COMMISSION
==================================================== */
.incentive-section {
  padding: 88px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.incentive-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, rgba(186, 35, 37, 0.03), transparent);
  pointer-events: none;
}

.incentive-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.incentive-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(70, 43, 52, 0.06);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.inc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  transition: background 0.4s;
}

.inc-card:hover {
  border-color: rgba(186, 35, 37, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.inc-card:hover::before {
  background: var(--red);
}

.inc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(186, 35, 37, 0.1),
    rgba(70, 43, 52, 0.07)
  );
  border: 1.5px solid rgba(186, 35, 37, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--red);
  transition: all 0.4s;
}

.inc-card:hover .inc-icon {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.inc-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--burgundy);
  margin-bottom: 6px;
}

.inc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Commission highlights list */
.commission-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.ch-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--body-text);
  line-height: 1.65;
}

.ch-item::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 8px;
}

/* ====================================================
SECTION 7 — REGISTRATION FORM
==================================================== */
.form-section {
  padding: 96px 0 88px;
  background: var(--white);
  position: relative;

  position: relative;
  padding: 70px 20px;
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-39.png") no-repeat center center;
  background-size: cover;
}

.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(186, 35, 37, 0.025) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.form-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left info panel */
.form-info-panel {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.fip-title {
  font-family: var(--font-disp);
  font-size: 30px;
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.fip-title em {
  color: var(--red);
  font-style: normal;
}

.fip-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.fip-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.fip-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fip-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--burgundy);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.fip-step-text {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
}

.fip-step-text strong {
  display: block;
  font-size: 13.5px;
  color: var(--burgundy);
  margin-bottom: 2px;
}

.fip-trust {
  background: linear-gradient(
    135deg,
    rgba(186, 35, 37, 0.06),
    rgba(70, 43, 52, 0.04)
  );
  border: 1px solid rgba(186, 35, 37, 0.15);
  border-radius: 14px;
  padding: 20px 18px;
}

.fip-trust h5 {
  font-size: 13px;
  font-weight: 800;
  color: var(--burgundy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fip-trust-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fti {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--body-text);
}

.fti i {
  color: var(--red);
  font-size: 12px;
  flex-shrink: 0;
}

/* FORM */
.recruiter-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
}

.form-section-group {
  margin-bottom: 32px;
}

.fsg-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.fsg-title i {
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid.full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: start;
}

.form-group label span {
  color: var(--red);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--body-text);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: all 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(186, 35, 37, 0.1);
}

.form-control::placeholder {
  color: var(--muted);
  font-size: 13.5px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23BA2325' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}

.upload-area {
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.upload-area:hover {
  border-color: var(--red);
  background: rgba(186, 35, 37, 0.03);
}

.upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-icon {
  font-size: 24px;
  color: var(--muted);
  margin-bottom: 8px;
}

.upload-area:hover .upload-icon {
  color: var(--red);
}

.upload-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 3px;
}

.upload-sub {
  font-size: 12px;
  color: var(--muted);
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-check label {
  font-size: 13.5px;
  color: var(--body-text);
  line-height: 1.55;
  cursor: pointer;
}

.form-check label a {
  color: var(--red);
  font-weight: 700;
}

.form-check label a:hover {
  color: var(--burgundy);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-main);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.submit-btn:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(186, 35, 37, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* ====================================================
SECTION 9 — FAQ MINI BLOCK
==================================================== */
.faq-mini {
  padding: 80px 0;
  background: var(--light-bg);
}

.faq-mini-header {
  text-align: center;
  margin-bottom: 52px;
}

.faq-mini-header .sec-sub {
  margin: 0 auto;
}

.faq-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.faq-mini-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  cursor: pointer;
  transition: all 0.35s;
}

.faq-mini-item:hover {
  border-color: rgba(186, 35, 37, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.fmi-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}

.fmi-q-text {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--burgundy);
  line-height: 1.4;
}

.fmi-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--cream);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--burgundy);
  transition: all 0.3s;
}

.faq-mini-item.open .fmi-toggle {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}

.fmi-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.35s ease;
  opacity: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0;
}

.faq-mini-item.open .fmi-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

.faq-mini-cta {
  text-align: center;
}

/*  */
/* ====================================================
S5: ELIGIBILITY SECTION - INTERNATIONAL STANDARD
==================================================== */
.eligibility-section {
  position: relative;
  padding: 40px 0;
  background: #ffffff;
  overflow: hidden;

  position: relative;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-33.png") no-repeat center center;
  background-size: cover;
}

.eligibility-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(186, 35, 37, 0.02) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(70, 43, 52, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.eligibility-section .auto-container {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Wrapper */
.eligibility-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Column - Eligibility Grid */
.eligibility-left {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(70, 43, 52, 0.08);
  border: 1px solid #f0e6e0;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.elig-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fcf9f7;
  border-radius: 12px;
  border-left: 4px solid #ba2325;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(24, 2, 2, 0.95);
}

.elig-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(186, 35, 37, 0.1);
  background: #ffffff;
  border-left-color: #462b34;
}

.elig-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(186, 35, 37, 0.1),
    rgba(70, 43, 52, 0.08)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ba2325;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.elig-card:hover .elig-icon {
  background: #ba2325;
  color: #ffffff !important;
  transform: rotate(360deg);
}
.elig-card:hover .elig-card i {
  color: white;
}

.elig-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #462b34;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.elig-card:hover .elig-content h4 {
  color: #ba2325;
}

.elig-content p {
  font-size: 13px;
  line-height: 1.5;
  color: #766068;
  margin: 0;
}

/* Right Column - Skills Panel */
.eligibility-right {
  position: relative;
}

.skills-panel {
  background: linear-gradient(135deg, #462b34 0%, #2e1b21 100%);
  border-radius: 20px;
  padding: 40px 35px;
  color: #ffffff;
  box-shadow: 0 25px 50px rgba(186, 35, 37, 0.25);
  position: relative;
  overflow: hidden;
}

.skills-panel::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(186, 35, 37, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.skills-panel::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(240, 230, 224, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.panel-header {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(186, 35, 37, 0.2);
  border: 1px solid rgba(186, 35, 37, 0.4);
  color: #f9b4b5;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.panel-badge i {
  font-size: 12px;
}

.skills-panel h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #ffffff;
}

.skills-panel h3 span {
  color: #ba2325;
  position: relative;
  display: inline-block;
}

.skills-panel h3 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(186, 35, 37, 0.3);
  z-index: -1;
}

.skills-panel p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(240, 230, 224, 0.7);
  margin-bottom: 0;
}

/* Skills Tags */
.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(240, 230, 224, 0.9);
  transition: all 0.3s ease;
  cursor: default;
  backdrop-filter: blur(5px);
}

.skill-tag i {
  color: #ba2325;
  font-size: 13px;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: #ba2325;
  border-color: #ba2325;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(186, 35, 37, 0.3);
}

.skill-tag:hover i {
  color: #ffffff;
}

/* Skills Footer */
.skills-footer {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.skills-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(240, 230, 224, 0.8);
}

.skills-note:last-child {
  margin-bottom: 0;
}

.skills-note i {
  color: #ba2325;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Skills CTA */
.skills-cta {
  position: relative;
  z-index: 2;
  text-align: center;
}

.skills-cta .theme-btn-one {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
  color: #fff !important;
  background: #ba2325;
  border: 2px solid #ba2325;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.skills-cta .theme-btn-one i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.skills-cta .theme-btn-one:hover {
  background: transparent;
  color: #ffffff !important;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.skills-cta .theme-btn-one:hover i {
  transform: translateX(5px);
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop 1200px and below */
@media (max-width: 1200px) {
  .eligibility-section .sec-title h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .skills-panel h3 {
    font-size: 26px;
  }
}

/* Tablet Landscape 992px and below */
@media (max-width: 992px) {
  .eligibility-section {
    padding: 80px 0;
  }

  .eligibility-section .sec-title h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .eligibility-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .eligibility-left {
    padding: 25px;
  }

  .skills-panel {
    padding: 35px 30px;
  }
}

/* Tablet Portrait 768px and below */
@media (max-width: 768px) {
  .eligibility-section {
    padding: 70px 0;
  }

  .eligibility-section .sec-title h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .eligibility-section .sec-title p {
    font-size: 16px;
  }

  .eligibility-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .elig-card {
    padding: 18px;
  }

  .elig-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .elig-content h4 {
    font-size: 15px;
  }

  .elig-content p {
    font-size: 12px;
  }

  .skills-panel {
    padding: 30px 25px;
  }

  .skills-panel h3 {
    font-size: 24px;
  }

  .skills-tags {
    gap: 10px;
  }

  .skill-tag {
    padding: 6px 14px;
    font-size: 13px;
  }
}

/* Mobile 576px and below */
@media (max-width: 576px) {
  .eligibility-section {
    padding: 60px 0;
  }

  .eligibility-section .sec-title h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .eligibility-section .sec-title p {
    font-size: 15px;
  }

  .eligibility-section .sec-title .top-title {
    font-size: 14px;
    padding-top: 24px;
  }

  .eligibility-section .sec-title .top-title:before {
    width: 45px;
    height: 45px;
  }

  .eligibility-left {
    padding: 20px;
  }

  .elig-card {
    padding: 15px;
    gap: 12px;
  }

  .elig-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .skills-panel {
    padding: 25px 20px;
  }

  .skills-panel h3 {
    font-size: 22px;
  }

  .skills-panel p {
    font-size: 14px;
  }

  .skills-tags {
    gap: 8px;
  }

  .skill-tag {
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
    font-size: 13px;
  }

  .skills-footer {
    padding: 15px;
  }

  .skills-note {
    font-size: 13px;
  }

  .skills-cta .theme-btn-one {
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Small Mobile 400px and below */
@media (max-width: 400px) {
  .eligibility-section .sec-title h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .elig-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .elig-icon {
    margin-bottom: 5px;
  }

  .skills-panel h3 {
    font-size: 20px;
  }

  .skill-tag {
    font-size: 12px;
  }
}

/*  */
/* ====================================================
S6: INCENTIVE / COMMISSION SECTION - WITH IMAGE
==================================================== */
.incentive-section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(135deg, #fcf9f7 0%, #ffffff 100%);
  overflow: hidden;

  position: relative;
  /* padding: 70px 20px; */
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-29.png") no-repeat center center;
  background-size: cover;
}

/* .incentive-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(186, 35, 37, 0.02) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(70, 43, 52, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
} */

/* .incentive-section::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(186, 35, 37, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
} */

.incentive-section .auto-container {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Wrapper */
.incentive-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Column - Content */
.incentive-content {
  position: relative;
}

.intro-text {
  position: relative;
  padding: 20px 0 20px 30px;
  margin-bottom: 30px;
  border-left: 4px solid #ba2325;
  background: #fcf9f7;
  border-radius: 0 10px 10px 0;
}

.intro-text i {
  position: absolute;
  top: 15px;
  left: -12px;
  width: 30px;
  height: 30px;
  background: #ba2325;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(186, 35, 37, 0.3);
}

.intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #462b34;
  font-weight: 500;
  margin: 0;
  font-style: italic;
}

/* Commission Highlights */
.commission-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.4s ease;
  border: 1px solid #ba2325;
}

.highlight-item:hover {
  background: #fcf9f7;
  border: none;
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(186, 35, 37, 0.95);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(186, 35, 37, 0.1),
    rgba(70, 43, 52, 0.08)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ba2325;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.highlight-item:hover .highlight-icon {
  background: #ba2325;
  color: #ffffff;
  transform: rotate(360deg) scale(1.1);
}

.highlight-text h5 {
  font-size: 16px;
  font-weight: 700;
  color: #462b34;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.highlight-item:hover .highlight-text h5 {
  color: #ba2325;
}

.highlight-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #766068;
  margin: 0;
}

/* Incentive CTA */
.incentive-cta {
  margin-top: 30px;
  text-align: left;
}

.incentive-cta .theme-btn-one {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
  color: #fff !important;
  background: #ba2325;
  border: 2px solid #ba2325;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  margin-bottom: 15px;
}

.incentive-cta .theme-btn-one i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.incentive-cta .theme-btn-one:hover {
  background: transparent;
  color: #ba2325 !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(186, 35, 37, 0.25);
}

.incentive-cta .theme-btn-one:hover i {
  transform: translateX(5px);
}

.cta-note {
  font-size: 13px;
  color: #9e848d;
  font-style: italic;
  margin: 0;
}

/* Right Column - Image Styling */
.incentive-right {
  position: relative;
}

.incentive-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(186, 35, 37, 0.2);
  transition: all 0.4s ease;
}

.incentive-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(186, 35, 37, 0.3);
}

.incentive-image-card {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
}

.incentive-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.incentive-image-card:hover .incentive-main-img {
  transform: scale(1.08);
}

/* Image Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 14, 14, 0.3) 0%,
    rgba(246, 242, 242, 0.2) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Floating Badges on Image */
.image-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  padding: 10px 18px;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 5;
  font-size: 14px;
  font-weight: 600;
  color: #462b34;
  border: 1px solid rgba(186, 35, 37, 0.2);
  transition: all 0.4s ease;
  animation: floatBadge 3s ease-in-out infinite;
}

.image-badge i {
  color: #ba2325;
  font-size: 16px;
}

.image-badge:hover {
  background: #ba2325;
  color: #ffffff;
  transform: scale(1.05);
}

.image-badge:hover i {
  color: #ffffff;
}

/* Badge Positions */
.badge-1 {
  top: 30px;
  left: 30px;
  animation-delay: 0s;
}

.badge-2 {
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.badge-3 {
  bottom: 30px;
  left: 30px;
  animation-delay: 1s;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.badge-2 {
  animation: floatBadgeRight 3s ease-in-out infinite;
}

@keyframes floatBadgeRight {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-8px);
  }
}

/* Trust Indicator */
.trust-indicator {
  position: absolute;
  bottom: -25px;
  right: 30px;
  background: #ffffff;
  border-radius: 50px;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(186, 35, 37, 0.2);
  z-index: 10;
  border: 2px solid #ba2325;
  animation: pulseTrust 2s ease-in-out infinite;
}

@keyframes pulseTrust {
  0%,
  100% {
    box-shadow: 0 15px 35px rgba(186, 35, 37, 0.2);
  }
  50% {
    box-shadow: 0 20px 45px rgba(186, 35, 37, 0.4);
  }
}

.ti-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #462b34, #ba2325);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.ti-text {
  display: flex;
  flex-direction: column;
}

.ti-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #462b34;
  line-height: 1.3;
}

.ti-text span {
  font-size: 12px;
  color: #766068;
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop 1200px and below */
@media (max-width: 1200px) {
  .incentive-section .sec-title h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .incentive-image-card {
    height: 450px;
  }
}

/* Tablet Landscape 992px and below */
@media (max-width: 992px) {
  .incentive-section {
    padding: 80px 0;
  }

  .incentive-section .sec-title h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .incentive-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .content-box {
    padding: 30px;
  }

  .incentive-image-card {
    height: 500px;
    max-width: 600px;
    margin: 0 auto;
  }

  .trust-indicator {
    right: 50%;
    transform: translateX(50%);
  }
}

/* Tablet Portrait 768px and below */
@media (max-width: 768px) {
  .incentive-section {
    padding: 70px 0;
  }

  .incentive-section .sec-title h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .incentive-section .sec-title p {
    font-size: 16px;
  }

  .content-box {
    padding: 25px;
  }

  .intro-text p {
    font-size: 15px;
  }

  .highlight-item {
    gap: 15px;
    padding: 12px 15px;
  }

  .highlight-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .highlight-text h5 {
    font-size: 15px;
  }

  .highlight-text p {
    font-size: 13px;
  }

  .incentive-image-card {
    height: 400px;
  }

  .badge-1,
  .badge-2,
  .badge-3 {
    padding: 8px 15px;
    font-size: 13px;
  }

  .badge-1 i,
  .badge-2 i,
  .badge-3 i {
    font-size: 14px;
  }

  .trust-indicator {
    padding: 10px 20px;
    bottom: -20px;
  }

  .ti-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .ti-text strong {
    font-size: 14px;
  }

  .ti-text span {
    font-size: 11px;
  }
}

/* Mobile 576px and below */
@media (max-width: 576px) {
  .incentive-section {
    padding: 60px 0;
  }

  .incentive-section .sec-title h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .incentive-section .sec-title p {
    font-size: 15px;
  }

  .incentive-section .sec-title .top-title {
    font-size: 14px;
    padding-top: 24px;
  }

  .incentive-section .sec-title .top-title:before {
    width: 45px;
    height: 45px;
  }

  .content-box {
    padding: 20px;
  }

  .intro-text {
    padding: 15px 0 15px 20px;
  }

  .intro-text i {
    width: 25px;
    height: 25px;
    font-size: 12px;
    left: -10px;
  }

  .intro-text p {
    font-size: 14px;
  }

  .commission-highlights {
    gap: 15px;
  }

  .highlight-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .highlight-item:hover {
    transform: translateY(-5px) translateX(0);
  }

  .highlight-icon {
    margin: 0 auto;
  }

  .incentive-cta {
    text-align: center;
  }

  .incentive-cta .theme-btn-one {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  .incentive-image-card {
    height: 350px;
  }

  /* Hide one badge on mobile for cleaner look */
  .badge-2 {
    display: none;
  }

  .badge-1 {
    top: 20px;
    left: 20px;
  }

  .badge-3 {
    bottom: 20px;
    left: 20px;
  }

  .trust-indicator {
    bottom: -25px;
    width: 90%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Small Mobile 400px and below */
@media (max-width: 400px) {
  .incentive-section .sec-title h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .incentive-image-card {
    height: 300px;
  }

  .badge-1,
  .badge-3 {
    padding: 6px 12px;
    font-size: 12px;
  }

  .badge-1 i,
  .badge-3 i {
    font-size: 12px;
  }

  .trust-indicator {
    padding: 8px 15px;
    bottom: -20px;
  }

  .ti-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .ti-text strong {
    font-size: 13px;
  }

  .ti-text span {
    font-size: 10px;
  }
}

/*  */
/* =========================================
TRUST & COMPLIANCE SECTION
========================================= */

.trust-compliance-section {
  padding: 60px 0;
  background: var(--light-bg);
  position: relative;

  position: relative;
  /* padding: 70px 20px; */
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-50.png") no-repeat center center;
  background-size: cover;
}

.trust-compliance-section .sec-title {
  margin-bottom: 50px;
}

/* grid */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* card */
.trust-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  border: 1px solid #151414;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  text-align: center;
}

/* gradient overlay */

.trust-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(to top, #ba2325, #6b2d33);

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s ease;

  z-index: 0;
}

/* hover effect */

.trust-card:hover::before {
  transform: scaleY(1);
}

/* hover card style */

.trust-card:hover {
  border-color: var(--red);
  box-shadow: 0 20px 45px rgba(186, 35, 37, 0.25);
  transform: translateY(-6px);
}

/* keep text above gradient */

.trust-card > * {
  position: relative;
  z-index: 2;
}

/* text turns white on hover */

.trust-card:hover h4,
.trust-card:hover p {
  color: #fff;
}

/* icon */

.trust-icon {
  width: 60px;
  height: 60px;
  background: rgba(186, 35, 37, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--red);
  margin: 0 auto 16px;
  transition: 0.3s;
}

.trust-card:hover .trust-icon {
  background: var(--red);
  color: #fff;
  transform: scale(1.08);
}

/* text */

.trust-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-text);
}

/* =========================================
  TABLET
  ========================================= */

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
  MOBILE
  ========================================= */

@media (max-width: 600px) {
  .trust-compliance-section {
    padding: 70px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 26px 20px;
  }
}

/* 
 */
/* Custom Dropdown Styles */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--body-text);
  transition: all 0.3s;
}

.custom-select-trigger.active,
.custom-select-trigger:hover {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(186, 35, 37, 0.1);
}

.custom-select-trigger .selected-option {
  color: var(--muted);
}

.custom-select-trigger .selected-option[data-selected="true"] {
  color: var(--burgundy);
  font-weight: 600;
}

.custom-select-trigger i {
  color: var(--red);
  font-size: 12px;
  transition: transform 0.3s;
}

.custom-select-trigger.active i {
  transform: rotate(180deg);
}

.custom-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ba2325;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(70, 43, 52, 0.12);
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.custom-options.show {
  max-height: 300px;
  opacity: 1;
  overflow-y: auto;
}

.custom-option {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--body-text);
  transition: all 0.2s;
  text-align: start;
}

.custom-option:hover {
  background: #2e1b21;
  color: white;
}

.custom-option.selected {
  background: var(--red);
  color: #fff;
}

/* Scrollbar for dropdown */
.custom-options::-webkit-scrollbar {
  width: 4px;
}

.custom-options::-webkit-scrollbar-track {
  background: var(--cream);
}

.custom-options::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 4px;
}

/* Make form full width */
.form-inner {
  display: grid;
  grid-template-columns: 1fr; /* Changed from 400px 1fr to 1fr */
  gap: 0; /* Remove gap since left panel is hidden */
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Hide left panel completely since it's commented out */
.form-info-panel {
  display: none;
}

/* Make form card take full width */
.recruiter-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 100%; /* Ensure it takes full width */
}

/* Adjust container for better spacing */
.auto-container {
  max-width: 1000px; /* Slightly wider for better form display */
  margin: 0 auto;
  padding: 0 32px;
}

/* Improve form grid for better spacing */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; /* Slightly larger gap */
}

/* Full width grid items */
.form-grid.full {
  grid-template-columns: 1fr;
}

/* Better upload area styling */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  background: var(--light-bg);
}

.upload-area:hover {
  border-color: var(--red);
  background: rgba(186, 35, 37, 0.03);
}

.upload-area.has-file {
  border-color: var(--red);
  background: rgba(186, 35, 37, 0.02);
}

.upload-icon {
  font-size: 32px;
  color: var(--muted);
  margin-bottom: 12px;
}

.upload-area:hover .upload-icon {
  color: var(--red);
}

.upload-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.upload-sub {
  font-size: 12px;
  color: var(--muted);
}

/* File preview styles */
.file-preview {
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--burgundy);
}

.file-preview .file-name {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.file-preview .remove-file {
  color: var(--red);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  transition: all 0.2s;
}

.file-preview .remove-file:hover {
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .recruiter-form-card {
    padding: 28px 22px;
  }

  .auto-container {
    padding: 0 20px;
  }
}

/*  */
/*  */
/* ===== RECRUITER PAGE SMOOTH ANIMATIONS ===== */

/* Scroll Progress Bar */
.recruiter-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  /* background: linear-gradient(90deg, #ba2325, #462b34); */
  z-index: 99999;
  transition: width 0.1s ease;
  /* box-shadow: 0 2px 10px rgba(186, 35, 37, 0.3); */
}

/* Base Animation Class */
.recruiter-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* Visible State */
.recruiter-visible {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) !important;
}

/* Trust Features */
.trust-features li {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.trust-section.recruiter-visible .trust-features li:nth-child(1) {
  transition-delay: 0.1s;
}
.trust-section.recruiter-visible .trust-features li:nth-child(2) {
  transition-delay: 0.15s;
}
.trust-section.recruiter-visible .trust-features li:nth-child(3) {
  transition-delay: 0.2s;
}
.trust-section.recruiter-visible .trust-features li:nth-child(4) {
  transition-delay: 0.25s;
}
.trust-section.recruiter-visible .trust-features li:nth-child(5) {
  transition-delay: 0.3s;
}
.trust-section.recruiter-visible .trust-features li:nth-child(6) {
  transition-delay: 0.35s;
}
.trust-section.recruiter-visible .trust-features li:nth-child(7) {
  transition-delay: 0.4s;
}
.trust-section.recruiter-visible .trust-features li:nth-child(8) {
  transition-delay: 0.45s;
}

/* Responsibility Items */
.resp-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.responsibilities-section.recruiter-visible .resp-item:nth-child(1) {
  transition-delay: 0.1s;
}
.responsibilities-section.recruiter-visible .resp-item:nth-child(2) {
  transition-delay: 0.15s;
}
.responsibilities-section.recruiter-visible .resp-item:nth-child(3) {
  transition-delay: 0.2s;
}
.responsibilities-section.recruiter-visible .resp-item:nth-child(4) {
  transition-delay: 0.25s;
}
.responsibilities-section.recruiter-visible .resp-item:nth-child(5) {
  transition-delay: 0.3s;
}
.responsibilities-section.recruiter-visible .resp-item:nth-child(6) {
  transition-delay: 0.35s;
}

/* Single Items */
.single-item {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.recruitment-technology.recruiter-visible .single-item:nth-child(1) {
  transition-delay: 0.1s;
}
.recruitment-technology.recruiter-visible .single-item:nth-child(2) {
  transition-delay: 0.15s;
}
.recruitment-technology.recruiter-visible .single-item:nth-child(3) {
  transition-delay: 0.2s;
}
.recruitment-technology.recruiter-visible .single-item:nth-child(4) {
  transition-delay: 0.25s;
}
.recruitment-technology.recruiter-visible .single-item:nth-child(5) {
  transition-delay: 0.3s;
}
.recruitment-technology.recruiter-visible .single-item:nth-child(6) {
  transition-delay: 0.35s;
}
.recruitment-technology.recruiter-visible .single-item:nth-child(7) {
  transition-delay: 0.4s;
}
.recruitment-technology.recruiter-visible .single-item:nth-child(8) {
  transition-delay: 0.45s;
}

/* Eligibility Cards */
.elig-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.eligibility-section.recruiter-visible .elig-card:nth-child(1) {
  transition-delay: 0.1s;
}
.eligibility-section.recruiter-visible .elig-card:nth-child(2) {
  transition-delay: 0.15s;
}
.eligibility-section.recruiter-visible .elig-card:nth-child(3) {
  transition-delay: 0.2s;
}
.eligibility-section.recruiter-visible .elig-card:nth-child(4) {
  transition-delay: 0.25s;
}
.eligibility-section.recruiter-visible .elig-card:nth-child(5) {
  transition-delay: 0.3s;
}
.eligibility-section.recruiter-visible .elig-card:nth-child(6) {
  transition-delay: 0.35s;
}
.eligibility-section.recruiter-visible .elig-card:nth-child(7) {
  transition-delay: 0.4s;
}
.eligibility-section.recruiter-visible .elig-card:nth-child(8) {
  transition-delay: 0.45s;
}

/* Skill Tags */
.skill-tag {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.eligibility-section.recruiter-visible .skill-tag:nth-child(1) {
  transition-delay: 0.1s;
}
.eligibility-section.recruiter-visible .skill-tag:nth-child(2) {
  transition-delay: 0.15s;
}
.eligibility-section.recruiter-visible .skill-tag:nth-child(3) {
  transition-delay: 0.2s;
}
.eligibility-section.recruiter-visible .skill-tag:nth-child(4) {
  transition-delay: 0.25s;
}
.eligibility-section.recruiter-visible .skill-tag:nth-child(5) {
  transition-delay: 0.3s;
}
.eligibility-section.recruiter-visible .skill-tag:nth-child(6) {
  transition-delay: 0.35s;
}

/* Highlight Items */
.highlight-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.incentive-section.recruiter-visible .highlight-item:nth-child(1) {
  transition-delay: 0.1s;
}
.incentive-section.recruiter-visible .highlight-item:nth-child(2) {
  transition-delay: 0.15s;
}
.incentive-section.recruiter-visible .highlight-item:nth-child(3) {
  transition-delay: 0.2s;
}
.incentive-section.recruiter-visible .highlight-item:nth-child(4) {
  transition-delay: 0.25s;
}

/* Trust Cards */
.trust-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.trust-compliance-section.recruiter-visible .trust-card:nth-child(1) {
  transition-delay: 0.1s;
}
.trust-compliance-section.recruiter-visible .trust-card:nth-child(2) {
  transition-delay: 0.15s;
}
.trust-compliance-section.recruiter-visible .trust-card:nth-child(3) {
  transition-delay: 0.2s;
}

/* FAQ Items */
.accordion-box .block {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.recruiter-visible .accordion-box .block:nth-child(1) {
  transition-delay: 0.1s;
}
.faq-section.recruiter-visible .accordion-box .block:nth-child(2) {
  transition-delay: 0.15s;
}
.faq-section.recruiter-visible .accordion-box .block:nth-child(3) {
  transition-delay: 0.2s;
}
.faq-section.recruiter-visible .accordion-box .block:nth-child(4) {
  transition-delay: 0.25s;
}
.faq-section.recruiter-visible .accordion-box .block:nth-child(5) {
  transition-delay: 0.3s;
}
.faq-section.recruiter-visible .accordion-box .block:nth-child(6) {
  transition-delay: 0.35s;
}

/* Form Card */
.recruiter-form-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.form-section.recruiter-visible .recruiter-form-card {
  opacity: 1;
  transform: translateY(0);
}

/* Sections */
.trust-section,
.responsibilities-section,
.recruitment-technology,
.eligibility-section,
.incentive-section,
.form-section,
.trust-compliance-section,
.faq-section,
.cta-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.trust-section.recruiter-visible,
.responsibilities-section.recruiter-visible,
.recruitment-technology.recruiter-visible,
.eligibility-section.recruiter-visible,
.incentive-section.recruiter-visible,
.form-section.recruiter-visible,
.trust-compliance-section.recruiter-visible,
.faq-section.recruiter-visible,
.cta-section.recruiter-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Badge Animations */
.badge-float {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .recruiter-animate {
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .trust-features li,
  .resp-item,
  .single-item,
  .elig-card,
  .skill-tag,
  .highlight-item,
  .trust-card,
  .accordion-box .block {
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
}
