.sa {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sa.up {
  transform: translateY(36px);
}
.sa.left {
  transform: translateX(-44px);
}
.sa.right {
  transform: translateX(44px);
}
.sa.scale {
  transform: scale(0.93) translateY(20px);
}
.sa.fade {
  transform: none;
}

.sa.in {
  opacity: 1 !important;
  transform: none !important;
}

[data-d="1"] {
  transition-delay: 0.06s !important;
}
[data-d="2"] {
  transition-delay: 0.12s !important;
}
[data-d="3"] {
  transition-delay: 0.18s !important;
}
[data-d="4"] {
  transition-delay: 0.24s !important;
}
[data-d="5"] {
  transition-delay: 0.3s !important;
}
[data-d="6"] {
  transition-delay: 0.36s !important;
}
[data-d="7"] {
  transition-delay: 0.42s !important;
}
[data-d="8"] {
  transition-delay: 0.48s !important;
}
[data-d="9"] {
  transition-delay: 0.54s !important;
}
[data-d="10"] {
  transition-delay: 0.6s !important;
}

/* ═══════════════════════════════════════════════
   GLOBAL SECTION TYPOGRAPHY
═══════════════════════════════════════════════ */
.c-section {
  padding: 90px 0;
}
.c-section--dark {
  background: var(--burgundy);
}
.c-section--cream {
  background: var(--cream);
}
.c-section--light {
  background: var(--light-grey);
}

.c-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(160, 50, 50, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section-label.white {
  color: #ffd0d0;
  background: rgba(255, 255, 255, 0.12);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--burgundy);
  line-height: 1.2;
  margin: 0 0 16px;
}
.section-title span {
  color: var(--red);
}
.section-title.white {
  color: #fff;
}

.section-sub {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 0 40px;
}
.section-sub.white {
  color: rgba(255, 255, 255, 0.78);
}
.centered {
  text-align: center;
}
.centered .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-primary-c {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--red);
  text-decoration: none;
  transition: all 0.28s ease;
  cursor: pointer;
}
.btn-primary-c:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-c {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--red);
  text-decoration: none;
  transition: all 0.28s ease;
  cursor: pointer;
}
.btn-outline-c:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white-c {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--burgundy);
  font-weight: 800;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid #fff;
  text-decoration: none;
  transition: all 0.28s ease;
}
.btn-white-c:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: all 0.28s ease;
  backdrop-filter: blur(6px);
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

.btn-group-c {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════ */
.marquee-wrap {
  background: #ba2325;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeSlide 30s linear infinite;
  white-space: nowrap;
}
.m-item {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 28px;
}
.m-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  margin-left: 28px;
}
@keyframes marqueeSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════
   S1 – HERO BANNER
═══════════════════════════════════════════════ */
.hero-banner {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(
    135deg,
    var(--burgundy) 0%,
    #2a1820 55%,
    #3d1c28 100%
  );
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(160, 50, 50, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(160, 50, 50, 0.12) 0%,
      transparent 50%
    ),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160, 50, 50, 0.22);
  border: 1px solid rgba(160, 50, 50, 0.4);
  color: #ffb0b0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-badge i {
  color: var(--red-light);
}
.hero-h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 20px;
}
.hero-h1 em {
  font-style: italic;
  color: #ff9a9a;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 28px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}
.hero-chip i {
  color: #ff5956;
  font-size: 12px;
}

/* Hero Visual Side */
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(70, 43, 52, 0.6) 0%,
    transparent 50%
  );
}
.hero-float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float.f1 {
  bottom: 30px;
  left: -24px;
}
.hero-float.f2 {
  top: 30px;
  right: -24px;
}
.hf-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.hf-text span {
  display: block;
  font-size: 11px;
  color: var(--grey);
}
.hf-text strong {
  font-size: 13px;
  color: var(--dark);
}
.hero-stat-pill {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--red);
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(160, 50, 50, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ═══════════════════════════════════════════════
   S2 – SEARCH BAR
═══════════════════════════════════════════════ */
.search-section {
  background: var(--cream);
  padding: 80px 0;
}
.search-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  margin-top: 32px;
}
.search-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.search-field input,
.search-field select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
  color: var(--dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
}
.search-field input:focus,
.search-field select:focus {
  border-color: var(--red);
  background: #fff;
}
.search-field .field-icon-wrap {
  position: relative;
}
.search-field .field-icon-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 14px;
}
.search-field .field-icon-wrap input,
.search-field .field-icon-wrap select {
  padding-left: 40px;
}
.search-btn-wrap {
  padding-bottom: 0;
}
.btn-search {
  width: 100%;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  color: #fff;
  border: none;
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.28s ease;
  white-space: nowrap;
}
.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160, 50, 50, 0.4);
}

/* Popular tags */
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.popular-tags span {
  font-size: 12px;
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pop-tag {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--burgundy);
  text-decoration: none;
  transition: all 0.2s;
}
.pop-tag:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(160, 50, 50, 0.06);
}

/* ═══════════════════════════════════════════════
   S3 – FEATURED JOBS
═══════════════════════════════════════════════ */
/* .jobs-section {
  background: var(--light-grey);
  padding: 90px 0;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.job-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--burgundy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.job-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.job-card:hover::before {
  transform: scaleX(1);
} */

/* .job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
} */
.company-logo {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  /* background: linear-gradient(135deg, var(--red), var(--burgundy)); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}
.job-type-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.badge-full {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}
.badge-remote {
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
}
.badge-intern {
  background: rgba(249, 115, 22, 0.1);
  color: #c2410c;
}
.badge-contract {
  background: rgba(14, 165, 233, 0.1);
  color: #0369a1;
}

.job-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 6px;
  line-height: 1.3;
}
.job-company {
  font-size: 13px;
  color: var(--grey);
  font-weight: 600;
  margin: 0 0 14px;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--grey);
  font-weight: 600;
}
.job-meta-item i {
  color: var(--red);
  font-size: 11px;
}
.job-salary {
  font-size: 15px;
  font-weight: 800;
  color: var(--burgundy);
  margin-bottom: 18px;
}
.job-actions {
  display: flex;
  gap: 10px;
}
.btn-apply {
  flex: 1;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}
.btn-apply:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
}
.btn-view-job {
  padding: 10px 16px;
  border-radius: 8px;
  border: 2px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--burgundy);
  text-decoration: none;
  background: transparent;
  transition: all 0.25s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-view-job:hover {
  border-color: var(--burgundy);
  background: var(--cream);
}

.job-date {
  font-size: 11px;
  color: #aaa;
  margin-top: 12px;
}
.view-all-wrap {
  text-align: center;
  margin-top: 44px;
}

/* ═══════════════════════════════════════════════
   S4 – JOB CATEGORIES
═══════════════════════════════════════════════ */
.categories-section {
  /* background: #fff; */
  padding: 90px 0;

  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;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 44px;
}
.cat-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  border: 2px solid var(--border);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.96);
}
.cat-card:hover {
  background: var(--burgundy);
  border-color: 2px solid white;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.cat-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  margin: 0 auto 14px;
  transition: all 0.3s;
}
.cat-card:hover .cat-icon {
  background: rgba(255, 255, 255, 0.2);
}
.cat-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s;
}
.cat-card:hover .cat-name {
  color: #fff;
}
.cat-count {
  font-size: 11px;
  color: var(--grey);
  margin-top: 4px;
  font-weight: 600;
  transition: color 0.3s;
}
.cat-card:hover .cat-count {
  color: rgba(255, 255, 255, 0.65);
}

/* ═══════════════════════════════════════════════
   S5 – HOW WE HELP
═══════════════════════════════════════════════ */
/* .how-section {
  background: var(--cream);
  padding: 90px 0;
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.how-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.how-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.how-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--burgundy);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius);
}
.how-badge .num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.how-badge .lbl {
  font-size: 12px;
  opacity: 0.75;
}
.how-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.how-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--dark);
}
.how-points li:last-child {
  border-bottom: none;
}
.how-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
} */

/* ═══════════════════════════════════════════════
   S5 – HOW WE HELP (Enhanced)
═══════════════════════════════════════════════ */

.how-section {
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  padding: 100px 0;
  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;
}

.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image Wrapper */
.how-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.how-img-wrap:hover {
  transform: translateY(-8px);
}

.how-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.how-img-wrap:hover img {
  transform: scale(1.05);
}

/* Badge */
.how-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.how-badge .num {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.how-badge .lbl {
  font-size: 12px;
  opacity: 0.8;
}

/* Points */
.how-points {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.how-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--dark);
  transition: transform 0.3s ease;
}

.how-points li:hover {
  transform: translateX(6px);
}

.how-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 8px 15px rgba(160, 50, 50, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .how-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .how-img-wrap img {
    height: 400px;
  }

  .how-section {
    padding: 80px 0;
  }
}

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* When Visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Direction Variations */
.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
}

/* =========================================
   TABLET RESPONSIVE (768px – 991px)
========================================= */

@media (max-width: 991px) {
  .how-section {
    padding: 80px 20px;
    text-align: center;
  }

  .how-inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  /* Content */
  .sec-title h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .how-points {
    max-width: 600px;
    margin: 0 auto 30px;
  }

  .how-points li {
    justify-content: flex-start;
    text-align: left;
    font-size: 15px;
  }

  /* Buttons */
  .btn-group-c {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-group-c a {
    min-width: 200px;
  }
} /* =========================================
   MOBILE RESPONSIVE (<768px)
========================================= */

@media (max-width: 767px) {
  .how-section {
    padding: 60px 15px;
  }

  .sec-title h2 {
    font-size: 26px;
  }

  .how-points li {
    font-size: 14px;
    gap: 12px;
  }

  .how-check {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .btn-group-c {
    flex-direction: column;
  }

  .btn-group-c a {
    width: 100%;
  }
}
/* ═══════════════════════════════════════════════
   S6 – CANDIDATE BENEFITS
═══════════════════════════════════════════════ */
/* .benefits-section {
  background: var(--light-grey);
  padding: 90px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--burgundy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.benefit-card:hover {
  border-color: rgba(160, 50, 50, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-card:hover::after {
  transform: scaleX(1);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(160, 50, 50, 0.12),
    rgba(70, 43, 52, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 20px;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  color: #fff;
}
.benefit-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 10px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
} */

/*  */
/* ═══════════════════════════════════════════════
   S6 – CANDIDATE BENEFITS (UPDATED CLEAN VERSION)
═══════════════════════════════════════════════ */

.benefits-section {
  background: var(--light-grey);
  padding: 90px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 44px;
}

/* CARD BASE */

.benefit-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid #a03232;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);

  text-align: center; /* 👈 centers text */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* IMAGE BACKGROUND (HIDDEN INITIALLY) */

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url("/assets/images/project/project-16.jpg")
    center center / cover no-repeat; */
  background: center center / cover no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.5s ease;
  z-index: -2;
}

.benefit-bg-1::before {
  background-image: url("/assets/images/project/project-16.jpg");
}

.benefit-bg-2::before {
  background-image: url("/assets/images/project/project-17.jpg");
}

.benefit-bg-3::before {
  background-image: url("/assets/images/project/project-19.jpg");
}

.benefit-bg-4::before {
  background-image: url("/assets/images/project/project-40.jpg");
}

.benefit-bg-5::before {
  background-image: url("/assets/images/project/project-45.jpg");
}

.benefit-bg-6::before {
  background-image: url("/assets/images/project/project-8.jpg");
}
/* DARK OVERLAY ABOVE IMAGE */

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(70, 43, 52, 0.85),
    rgba(160, 50, 50, 0.85)
  );
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

/* ICON */

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(160, 50, 50, 0.12),
    rgba(70, 43, 52, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 20px;
  margin-bottom: 18px;
  transition: all 0.4s ease;
  margin: 0 auto 18px;
}

/* TEXT */

.benefit-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 10px;
  transition: 0.4s ease;
}

.benefit-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
  transition: 0.4s ease;
}

/* HOVER EFFECT */

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-card:hover h4,
.benefit-card:hover p {
  color: #fff;
}

.benefit-card:hover .benefit-icon {
  background: #fff;
  color: var(--red);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   S7 – RESUME UPLOAD
═══════════════════════════════════════════════ */

/*  */

/* ==========================================
   RESUME UPLOAD SECTION
========================================== */

.custom-select {
  position: relative;
  width: 100%;
}

.select-selected {
  height: 55px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid #e6dcd5;
  border-radius: 8px;
  background: #faf8f6;
  cursor: pointer;
}

.select-items {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 5;
}

.select-items div {
  padding: 12px 18px;
  cursor: pointer;
}

.select-items div:hover {
  background: rgba(160, 50, 50, 0.08);
}

.custom-select.active .select-items {
  display: block;
}
.form-group select {
  width: 100%;
  height: 55px;
  border: 1px solid #e6dcd5;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 15px;
  background: #faf8f6;
  cursor: pointer;
}
.resume-upload-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff, var(--cream));
}

.resume-sub {
  font-size: 16px;
  max-width: 600px;
  margin: 15px auto 0;
  color: var(--grey);
  line-height: 1.7;
}

.resume-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 18px;
  margin-top: 50px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.resume-form-wrapper:hover {
  transform: translateY(-5px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 55px;
  border: 1px solid #e6dcd5;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 15px;
  transition: 0.3s ease;
  background: #faf8f6;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
  background: #fff;
}

.full-width {
  grid-column: 1 / -1;
}

/* Upload Box */

.upload-box {
  display: block;
  border: 2px dashed var(--red);
  border-radius: 12px;
  padding: 35px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  background: rgba(160, 50, 50, 0.05);
  position: relative;
}

.upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-box:hover {
  background: rgba(160, 50, 50, 0.1);
}

.upload-content i {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.upload-content span {
  font-weight: 600;
  color: var(--dark);
}

/* Button */

.resume-btn {
  width: 100%;
  margin-top: 25px;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  border: none;
  height: 55px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.resume-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(160, 50, 50, 0.4);
}

/* Note */

.resume-note {
  font-size: 13px;
  color: var(--grey);
  margin-top: 15px;
  text-align: center;
}

/* ==========================================
   SCROLL ANIMATION
========================================== */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .resume-form-wrapper {
    padding: 35px;
  }
}

@media (max-width: 600px) {
  .resume-upload-section {
    padding: 70px 20px;
  }

  .resume-form-wrapper {
    padding: 25px;
  }

  .resume-btn {
    font-size: 14px;
  }
}

/*  */

/* ═══════════════════════════════════════════════
   S8 – SKILL VERIFICATION
═══════════════════════════════════════════════ */

/*  */

/* =========================================
   VERIFY SECTION - CREAM VERSION
========================================= */

.verify-section {
  /* background: var(--cream);
  padding: 110px 20px; */
  text-align: center;

  padding: 90px 0;
  position: relative;
  overflow: hidden;

  position: relative;
  padding: 70px 20px 70px;
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-36.png") no-repeat center center;
  background-size: cover;
}

.verify-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.verify-content {
  max-width: 750px;
  margin: 0 auto 60px;
}

.verify-badge {
  margin: 30px auto 0;
  max-width: 600px;
  padding: 18px 24px;
  background: rgba(160, 50, 50, 0.08);
  border: 1px solid rgba(160, 50, 50, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.verify-badge i {
  font-size: 22px;
  color: var(--red);
}

.verify-badge p {
  margin: 0;
  font-weight: 600;
  color: var(--dark);
}

/* ================= CARDS ================= */

.verify-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 in one row */
  gap: 28px;
  margin-bottom: 60px;
}

.verify-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}

.verify-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.verify-card i {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 16px;
}

.verify-card h5 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}

.verify-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ================= BUTTONS ================= */

.verify-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 35px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {
  .verify-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .verify-section {
    padding: 70px 20px;
  }

  .verify-cards {
    grid-template-columns: 1fr;
  }

  .verify-buttons {
    flex-direction: column;
  }

  .verify-buttons a {
    width: 100%;
  }

  .verify-badge {
    flex-direction: column;
    text-align: center;
  }
}
/* ═══════════════════════════════════════════════
   S9 – INTERNSHIP / FRESHER
═══════════════════════════════════════════════ */
.internship-section {
  /* background: #fff; */
  /* padding: 90px 0; */

  position: relative;
  padding: 0px 20px 70px;
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-50.png") no-repeat center center;
  background-size: cover;
}
.internship-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
/* .internship-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
} */

.internship-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.internship-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.18);
}

.ph-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.65);
  transition: all 0.35s ease;
}

/* Smooth reveal animation (SAFE) */
.internship-section .animate-text {
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.internship-section .animate-text.show {
  opacity: 1;
  transform: translateY(0);
}
.ph-item:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.internship-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}
.internship-img-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 20px;
  text-transform: uppercase;
}
.program-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.ph-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  transition: all 0.25s;
  box-shadow: rgba(20, 19, 19, 0.65);
}
.ph-item:hover {
  border-color: var(--red);
  transform: translateY(-10px);
}
.ph-icon {
  color: var(--red);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.ph-text h5 {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 4px;
}
.ph-text p {
  font-size: 12px;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}

/* Hide internship image on tablet + mobile */
@media (max-width: 991px) {
  .internship-img {
    display: none !important;
  }

  .internship-inner {
    grid-template-columns: 1fr; /* make it single column */
  }
} /* ═══════════════════════════════════════════════
   S10 – TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials-section {
  background: var(--cream);
  padding: 90px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 2px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover {
  border-color: rgba(160, 50, 50, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testi-quote {
  font-size: 44px;
  line-height: 1;
  color: var(--red);
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.testi-text {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin: 0 0 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.testi-info h5 {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.testi-info span {
  font-size: 12px;
  color: var(--grey);
}
.testi-role-badge {
  margin-left: auto;
  background: #ff5956;
  color: white !important;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.stars {
  color: #f59e0b;
  font-size: 12px;
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════
   S11 – FINAL CTA
═══════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--burgundy) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3Ccircle cx='0' cy='0' r='20'/%3E%3Ccircle cx='80' cy='80' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.final-cta .c-container {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 52px);
  color: #fff;
  margin: 0 0 16px;
  font-weight: 800;
}
.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 40px;
  max-width: 560px;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   SIDEBAR EXTRAS (Latest Jobs, Top Companies)
═══════════════════════════════════════════════ */
.extras-section {
  background: var(--light-grey);
  padding: 90px 0;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.extra-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.extra-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--burgundy);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.extra-card h4 i {
  color: var(--red);
}
.extra-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.extra-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--dark);
}
.extra-list li:last-child {
  border-bottom: none;
}
.extra-list a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.extra-list a:hover {
  color: var(--red);
}
.extra-badge-small {
  font-size: 10px;
  font-weight: 700;
  background: rgba(160, 50, 50, 0.1);
  color: var(--red);
  padding: 3px 8px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   PAGE TITLE BANNER (inherited from service.css)
═══════════════════════════════════════════════ */
.page-title {
  position: relative;
  padding: 140px 0 80px;
  background-size: cover;
  background-position: center;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */

/* Tablet 768–1024 */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-img-wrap {
    max-width: 600px;
  }
  .hero-float.f2 {
    right: 0;
  }
  .hero-float.f1 {
    left: 0;
  }

  .search-grid {
    grid-template-columns: 1fr 1fr;
  }
  .search-btn-wrap {
    grid-column: 1 / -1;
  }
  .btn-search {
    max-width: 300px;
    margin: 0 auto;
  }

  .jobs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-inner,
  .resume-inner,
  .verify-inner,
  .internship-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-img-wrap img,
  .internship-img img {
    height: 340px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .extras-grid {
    grid-template-columns: 1fr 1fr;
  }

  .verify-inner {
    grid-template-columns: 1fr;
  }
  .resume-content-side {
    padding-right: 0;
  }
}

/* Mobile < 768 */
@media (max-width: 767px) {
  .c-section {
    padding: 60px 0;
  }
  .c-container {
    padding: 0 16px;
  }

  .hero-banner {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-img-wrap img {
    height: 280px;
  }
  .hero-float {
    display: none;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-inner,
  .resume-inner,
  .verify-inner,
  .internship-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .how-img-wrap img,
  .internship-img img {
    height: 260px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .extras-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
  .verify-cards {
    grid-template-columns: 1fr;
  }
  .program-highlights {
    grid-template-columns: 1fr;
  }

  .resume-form-wrap {
    padding: 28px 20px;
  }
  .search-card {
    padding: 28px 20px;
  }

  .btn-group-c {
    flex-direction: column;
  }
  .btn-group-c a {
    text-align: center;
    justify-content: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-chips {
    gap: 8px;
  }
  .hero-chip {
    font-size: 12px;
    padding: 6px 12px;
  }

  .extras-grid {
    grid-template-columns: 1fr;
  }

  .how-badge {
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 480px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .extras-grid {
    grid-template-columns: 1fr;
  }
}

/*  */

/*  */
/* ===== SMOOTH SCROLL ANIMATIONS - NON-INTRUSIVE ===== */

/* Initial hidden state */
[data-scroll] {
  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);
}

/* Visible state */
[data-scroll].scrolled {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Different directions */
[data-scroll="left"] {
  transform: translateX(-40px);
}

[data-scroll="right"] {
  transform: translateX(40px);
}

[data-scroll="scale"] {
  transform: scale(0.95);
}

/* Stagger delays for cards */
.job-card[data-scroll],
.benefit-card[data-scroll],
.cat-card[data-scroll],
.process-block-one[data-scroll],
.ph-item[data-scroll] {
  transition-delay: calc(0.1s * var(--card-index, 0));
}

/* Progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  /* background: linear-gradient(90deg, #BA2325, #462b34); */
  z-index: 9999;
  transition: width 0.1s ease;
}

/*  */

/* Add this to your CSS file */

/* Ensure job cards are hidden initially and animate smoothly */
.job-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* When scrolled class is added */
.job-card.scrolled {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger animation for each job card */
.job-card:nth-child(1) {
  transition-delay: 0.1s;
}
.job-card:nth-child(2) {
  transition-delay: 0.2s;
}
.job-card:nth-child(3) {
  transition-delay: 0.3s;
}
.job-card:nth-child(4) {
  transition-delay: 0.4s;
}
.job-card:nth-child(5) {
  transition-delay: 0.5s;
}
.job-card:nth-child(6) {
  transition-delay: 0.6s;
}

/*  */
/* For your existing [data-scroll] system */
.page-title[data-scroll] {
  opacity: 0;
  transform: translateY(30px);
}

.page-title[data-scroll].scrolled {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger children animations */
.page-title .bread-crumb {
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.page-title .title-box h1 {
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.page-title .title-box p {
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.page-title .hero-highlights .hero-chip {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-title .hero-highlights .hero-chip:nth-child(1) {
  transition-delay: 0.5s;
}
.page-title .hero-highlights .hero-chip:nth-child(2) {
  transition-delay: 0.6s;
}
.page-title .hero-highlights .hero-chip:nth-child(3) {
  transition-delay: 0.7s;
}
.page-title .hero-highlights .hero-chip:nth-child(4) {
  transition-delay: 0.8s;
}

.page-title .cta-buttons-group a {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.page-title .cta-buttons-group a:nth-child(1) {
  transition-delay: 0.9s;
}
.page-title .cta-buttons-group a:nth-child(2) {
  transition-delay: 1s;
}
.page-title .cta-buttons-group a:nth-child(3) {
  transition-delay: 1.1s;
}
