* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #F4F9FF;
  /* Bright White Base */
  color: #224172;
  /* Deep blue text */
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

/* ================start- NAVIGATION SECTION ==================== */

.jobVac-header {
  width: 100%;
  background: #ffffff;
}

.jobVac-nav {
  padding: 0 40px;
  background-color: #E3F3FB;
  border-bottom: 2px solid #69BBDD;
}

.jobVac-nav-inner {
  max-width: 1250px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ===========================
      LOGO BLOCK
=========================== */

.jobVac-logo-block {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.jobVac-logo-img {
  width: 42px;
  height: auto;
}

.jobVac-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.jobVac-brand {
  font-size: 22px;
  font-weight: 700;
  color: #0B1957;
}

.jobVac-tagline {
  font-size: 13px;
  font-weight: 500;
  color: #5784E6;
}


/* ===========================
       MENU LINKS
=========================== */

.jobVac-menu {
  display: flex;
  gap: 28px;
}

.jobVac-menu a {
  font-size: 16px;
  color: #3b4455;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}

.jobVac-menu a:hover,
.jobVac-menu a.active {
  color: #3365ff;
}


/* ===========================
       AUTH BUTTONS
=========================== */

.jobVac-auth {
  display: flex;
  gap: 12px;
}

.jobVac-auth button {
  padding: 8px 18px;
  font-size: 15px;
  border: 1px solid #3365ff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  background: #fff;
  color: #3365ff;
  transition: all .25s ease;
}

.jobVac-employer {
  padding: 8px 18px;
  font-size: 15px;
  border: 1px solid #3365ff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  background: #fff;
  color: #3365ff;
  transition: all .25s ease;
}

.jobVac-auth a:hover {
  background: #3365ff;
  color: #fff;
}

.jobVac-auth button:hover {
  background: #3365ff;
  color: #fff;
}

/* ===========================
       MOBILE
=========================== */
@media (max-width: 900px) {
  .jobVac-nav-inner {
    flex-direction: column;
    height: auto;
    gap: 14px;
    padding: 15px 0;
  }

  .jobVac-auth {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ========================nav-end========================= */

/* ================ HERO SECTION ==================== */

.job-ban-hero {
  padding: 50px 0;
  background: linear-gradient(100deg, #f5f8ff 0%, #e8efff 100%);
}

.job-ban-inner {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT TEXT AREA */
.job-ban-title {
  font-size: 50px;
  font-weight: 800;
  color: #0b1957;
  line-height: 1.2;
  margin-bottom: 18px;
}

.job-ban-desc {
  font-size: 18px;
  color: #4e576a;
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* SEARCH BAR */
.job-ban-search {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 620px;
  margin-bottom: 22px;
}

.job-ban-input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #bfcdf5;
  font-size: 15px;
  background: #fff;
}

.job-ban-btn {
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  background: #3365ff;
  color: #fff;
  transition: 0.25s ease-in-out;
}

.job-ban-btn:hover {
  background: #264ddc;
}

/* TAG LIST */
.job-ban-tags {
  color: #475066;
  font-size: 15px;
  margin-top: 8px;
}

.job-ban-tags span {
  background: #eef3ff;
  color: #2f5dea;
  font-size: 14px;
  padding: 3px 8px;
  border-radius: 5px;
  margin-right: 6px;
  cursor: pointer;
}

/* IMAGE */
.job-ban-image img {
  width: 460px;
}


/* ===================end-of-hero-banner====================================== */


/* - ============================start-login-register============================ - */

/* Popup Container */
.jobVac-buttons {
  display: flex;
  gap: 15px;
}

.jobVac-buttons button {
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 9;
  backdrop-filter: blur(5px);
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  border-radius: 16px;
  width: 380px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 10;
  transition: all 0.25s ease;
}

.popup-box {
  padding: 35px 30px;
  position: relative;
}

.popup-box h2 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 24px;
  color: #111;
}

.subtitle {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

.social-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.social:hover {
  background: #f7f7f7;
}

.social img {
  width: 18px;
  height: 18px;
}

.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.divider span {
  background: #fff;
  padding: 0 8px;
  color: #999;
  font-size: 13px;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
  transform: translateY(-50%);
  z-index: -1;
}

.popup input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.popup input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.btn-primary {
  width: 100%;
  background: #0066ff;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 12px;
  border-radius: 10px;
  margin-top: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #0055e6;
}

.remember-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 10px 0 14px;
  font-size: 13px;
  color: #444;
}

/* label with checkbox + text */
.remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  color: #444;
}

/* checkbox styling for consistent look */
.remember input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0066ff;
  /* modern blue for checked state (supported browsers) */
  border-radius: 4px;
}

/* forgot link style */
.remember-row .forgot {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
  white-space: nowrap;
  /* avoid breaking the link text */
}


.switch {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #444;
}

.switch a {
  color: #007bff;
  text-decoration: none;
}

.close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
  color: #666;
  transition: 0.2s;
}

.close:hover {
  color: #000;
}


@media (max-width: 360px) {
  .remember-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .remember-row .forgot {
    align-self: flex-end;
    /* keep 'Forgot' on the right if possible */
  }
}


/* - ============================end-login-register============================ - */

/* --=========================start- enquire Form============================ -- */


.enq-frm-demo-btn {
  background-color: #007BFF;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.enq-frm-demo-btn:hover {
  background-color: #005fc1;
}

/* Overlay */
.enq-frm-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Form Box */
.enq-frm-box {
  background: #fff;
  width: 380px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: enqSlideUp 0.4s ease;
}

/* Animation */
@keyframes enqSlideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.enq-frm-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 26px;
  color: #333;
  cursor: pointer;
}

/* Titles */
.enq-frm-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0B3D60;
  margin-bottom: 5px;
}

.enq-frm-subtitle {
  font-size: 0.95rem;
  color: #4A5F6A;
  margin-bottom: 20px;
}

/* Inputs */
.enq-frm-form label {
  font-size: 0.9rem;
  color: #1a1a1a;
  display: block;
  margin-top: 12px;
}

.enq-frm-form input,
.enq-frm-form select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.enq-frm-form input:focus,
.enq-frm-form select:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Radio Group */
.enq-frm-radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.enq-frm-radio-group label {
  font-size: 0.9rem;
  color: #333;
}

/* Submit Button */
.enq-frm-btn {
  background-color: #007BFF;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  margin-top: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enq-frm-btn:hover {
  background-color: #005fc1;
}

/* --=========================end- enquire Form============================ -- */




/* ============================start-of-about============================ */

.job-abt-section {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: center;
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 60px;
  gap: 50px;
  background: #E3F3FB;
}



.job-abt-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 108, 169, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-abt-image img:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 108, 169, 0.25);
}

.job-abt-content h1 {
  color: #000;
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.3;
}

.job-abt-content h2 {
  color: #006CA9;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.job-abt-content p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 15px;
}

.job-abt-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.job-abt-card {
  background: #f8fdff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid #e3f1fa;
  box-shadow: 0 5px 15px rgba(0, 108, 169, 0.05);
  transition: all 0.3s ease;
}

.job-abt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 108, 169, 0.15);
  border-color: #69BBDD;
}

.job-abt-icon {
  font-size: 28px;
  color: #006CA9;
  margin-bottom: 10px;
}


/* CTA BUTTON */
.job-abt-cta {
  margin-top: 35px;
}

.job-abt-btn {
  display: inline-block;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  background: #006CA9;
  color: #fff;
  text-decoration: none;
  border: 1px solid #006CA9;
  transition: 0.25s ease-in-out;
}

.job-abt-btn:hover {
  background: #fff;
  color: #006CA9;
  border-color: #006CA9;
}

.job-abt-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.job-abt-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .job-abt-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .job-abt-content {
    text-align: center;
  }

  .job-abt-highlights {
    justify-items: center;
  }
}




/* ============================end-of-about============================ */


/* ====================================start-of-job-journey============================== */

.jv-journey {
  background: #E3F3FB;
  padding: 100px 30px;
  position: relative;
  overflow: hidden;
}

.jv-journey::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  width: 300%;
  height: 100%;
  background: linear-gradient(120deg, #5784E6 10%, #D1E8FF 60%, #F8F3EA 90%);
  opacity: 0.12;
  transform: rotate(-3deg);
}

.jv-journey-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.jv-journey-title {
  font-size: 44px;
  font-weight: 800;
  color: #0B1957;
  margin-bottom: 15px;
  padding-top: 2rem;
}

.jv-journey-title span {
  color: #5784E6;
}

.jv-journey-sub {
  font-size: 23px;
  color: #333;
  max-width: 700px;
  margin: 0 auto 60px;
}

.jv-steps {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
}

.jv-step {
  background: #69BBDD;
  border-radius: 18px;
  padding: 40px 25px;
  flex: 1 1 230px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 5px solid transparent;
}

.jv-step:hover {
  transform: translateY(-8px);
  border-top: 5px solid #0B1957;
  box-shadow: 0 12px 35px rgba(87, 132, 230, 0.25);
}

.jv-step-icon {
  background: #D1E8FF;
  color: #0B1957;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.jv-step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0B1957;
}

.jv-step p {
  font-size: 16px;
  color: #e3f1fa;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .jv-steps {
    flex-direction: column;
    align-items: center;
  }

  .jv-step {
    max-width: 400px;
  }
}


/* ====================================end-of-of-job-journey============================== */




/* ==========================start-of-Popular-job-categories============================ */
.job-cat-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: left;
}

.job-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.job-cat-header h1 {
  font-size: 1.8rem;
  color: #000;
  margin: 0;
}

.job-cat-viewall {
  color: #006CA9;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.job-cat-viewall:hover {
  color: #004b7a;
}

.job-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.job-cat-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.job-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: #b3d7ff;
}

.job-cat-icon {
  font-size: 24px;
  color: #6a5acd;
  margin-bottom: 10px;
}

.job-cat-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.job-cat-subtitle {
  font-size: 0.85rem;
  color: #6b7280;
}

/* ➜ Arrow on right */
.job-cat-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 1.1rem;
  color: #6a5acd;
  transition: transform 0.3s ease;
}

.job-cat-card:hover .job-cat-arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .job-cat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}



/* ==========================end-of-Popular-job-categories============================ */








/* ========= JOB SEEKER HOW WE WORK ========= */
.jb-hws-section {
  width: 100%;
  padding: 80px 0;
  background: #f9fafc;
}

.jb-hws-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.jb-hws-head {
  text-align: center;
  margin-bottom: 60px;
}

.jb-hws-head h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
}

.jb-hws-head span {
  color: #f15a29;
}

.jb-hws-head p {
  max-width: 650px;
  margin: auto;
  color: #555;
  font-size: 16px;
}

/* Timeline Grid */
.jb-hws-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.jb-hws-step {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: .3s ease;
}

.jb-hws-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.jb-hws-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f15a29;
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  font-size: 18px;
}

.jb-hws-step h3 {
  margin-top: 25px;
  font-size: 20px;
  margin-bottom: 10px;
}

.jb-hws-step p {
  color: #444;
  font-size: 15px;
  line-height: 1.55;
}

/* CTA */
.jb-hws-cta {
  text-align: center;
  margin-top: 60px;
}

.jb-hws-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 28px;
  background: #f15a29;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: .25s ease;
}

.jb-hws-btn:hover {
  background: #d64514;
}

/* == Responsive == */
@media (max-width: 760px) {
  .jb-hws-head h2 {
    font-size: 30px;
  }
}

/* ================================= */


/* ================================
   EMPLOYER — HOW WE WORK (FREE/PAID)
================================ */
.jb-hwp-container {
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(120deg, #f8fbff, #eaf2fd);
  font-family: 'Poppins', sans-serif;
}

.jb-hwp-header {
  text-align: center;
  margin-bottom: 60px;
}

.jb-hwp-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0b1957;
  margin-bottom: 12px;
}

.jb-hwp-header span {
  color: #0073ff;
}

.jb-hwp-header p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  color: #4a4a4a;
}

/* Wrapper Layout */
.jb-hwp-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
  gap: 35px;
  width: 90%;
  max-width: 1250px;
  margin: auto;
}


/* BOX */
.jb-hwp-box {
  border-radius: 18px;
  padding: 35px;
  background: #fff;
  border: 1px solid #d7e4f5;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.05);
  transition: .35s ease;
}

.jb-hwp-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.12);
}

/* FREE CARD */
.jb-hwp-free {
  background: linear-gradient(180deg, #ffffff, #f1f9ff);
}

/* PAID CARD */
.jb-hwp-paid {
  background: linear-gradient(180deg, #ffffff, #fff4e4);
  border: 1px solid #f4c57d;
}

/* Title */
.jb-hwp-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.jb-hwp-title h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0b1957;
}

/* Icon Style */
.jb-hwp-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: #0073ff;
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
}

.jb-hwp-icon.gold {
  background: #ffce3e;
  color: #000;
}

/* Text */
.jb-hwp-subtext {
  color: #4a5878;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}

/* List */
.jb-hwp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.jb-hwp-list li {
  font-size: 15px;
  padding: 8px 0;
  color: #333;
}

/* CTA BUTTONS */
.jb-hwp-cta {
  margin-top: 10px;
}

.jb-hwp-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: .25s ease;
}

/* Free Button */
.jb-hwp-btn-free {
  background: #0073ff;
  color: #fff;
}

.jb-hwp-btn-free:hover {
  background: #005bcc;
}

/* Paid Button */
.jb-hwp-btn-paid {
  background: #ffb835;
  color: #000;
}

.jb-hwp-btn-paid:hover {
  background: #ff9f00;
}

/* Responsive */
@media(max-width: 760px) {
  .jb-hwp-header h2 {
    font-size: 30px;
  }
}




















/* ==============================start-of-job-post=============================== */

.job-post-section {
  position: relative;
  background: linear-gradient(135deg, #0B1957, #5784E6);
  color: #fff;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  padding: 60px 0;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.job-post-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0 60px;
}

.job-post-left {
  flex: 1;
  z-index: 2;
}

.job-post-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #D1E8FF;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.job-post-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.job-post-title span {
  color: #F8F3EA;
}

.job-post-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 30px;
}

.job-post-btn {
  display: inline-block;
  background: #F8F3EA;
  color: #0B1957;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.job-post-btn:hover {
  background: #D1E8FF;
  color: #0B1957;
}

.job-post-right {
  flex: 1;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.job-post-right img {
  width: 450px;
  transform: rotate(-5deg);
}

/* Responsive Design */
@media (max-width: 900px) {
  .job-post-section {
    clip-path: none;
    border-radius: 0;
    padding: 60px 20px;
  }

  .job-post-container {
    flex-direction: column;
    text-align: center;
  }

  .job-post-right img {
    transform: none;
    max-width: 400px;
  }

  .job-post-title {
    font-size: 2.2rem;
  }
}

/* ==============================end-of-job-post=============================== */



/* ===========================start-of-featured-job========================= */

.job-feat-section {
  background-color: #F4F9FF;
  padding: 80px 10%;
  color: #001a2e;
}

.job-feat-container {
  max-width: 1200px;
  margin: 0 auto;
}

.job-feat-title {
  font-size: 32px;
  font-weight: 700;
  color: #003f63;
  margin-bottom: 10px;
}

.job-feat-subtitle {
  font-size: 16px;
  color: #4c5b6b;
  margin-bottom: 40px;
}

.job-feat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Card Styles */
.job-feat-card {
  background-color: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.job-feat-category {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.job-feat-role {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #003f63;
}

.job-feat-location {
  font-size: 14px;
  color: #4c5b6b;
  margin-bottom: 10px;
}

.job-feat-date {
  font-size: 13px;
  color: #7c8a9b;
}

/* Responsive */
@media (max-width: 768px) {
  .job-feat-title {
    font-size: 26px;
  }

  .job-feat-subtitle {
    font-size: 14px;
  }
}


/* ===========================end-of-featured-job========================= */



/* ==========================
   WHY EMPLOYERS TRUST US
========================== */

.jb-trust-unique {
  background: #fdfdfd;
  padding: 100px 20px 50px;
  font-family: "Poppins", sans-serif;
}

.jb-trust-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
}

/* --- LEFT --- */
.jb-trust-heading {
  font-size: 42px;
  font-weight: 800;
  color: #121212;
  margin-bottom: 10px;
}

.jb-trust-heading span {
  color: #0077ff;
}

.jb-trust-desc {
  color: #555;
  line-height: 1.6;
  font-size: 17px;
  max-width: 550px;
  margin-bottom: 40px;
}

/* UNIQUE TIMELINE STYLE */
.jb-trust-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid #0077ff;
  padding-left: 25px;
  /* space to the left of items */
}

.jb-trust-timeline li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}

.jb-trust-timeline li .circle {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: #0077ff;
  border-radius: 50%;
}

.jb-trust-timeline li:hover .circle {
  transform: scale(1.25);
  background: #005ecc;
}


/* --- RIGHT --- */
.jb-trust-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.jb-metric {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.35s;
}

.jb-metric:hover {
  transform: translateY(-6px);
  border-color: #0077ff;
  box-shadow: 0 8px 25px rgba(0, 119, 255, 0.12);
}

.jb-metric h3 {
  font-size: 36px;
  font-weight: 800;
  color: #0077ff;
  margin-bottom: 6px;
}

.jb-metric p {
  font-size: 14px;
  color: #444;
}

/* CTA SECTION */
.jb-trust-cta {
  margin-top: 80px;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.jb-trust-cta h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 20px;
}

.jb-trust-btn {
  padding: 14px 38px;
  background: #0077ff;
  border: none;
  color: #fff;
  border-radius: 30px;
  font-size: 15px;
  letter-spacing: 0.4px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.35s;
}

.jb-trust-btn:hover {
  background: #005fcc;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .jb-trust-wrap {
    grid-template-columns: 1fr;
  }

  .jb-trust-right {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}


/* ============================= End Why Employers Trust Us ============================ */






/* ===============================
   CAREER SUPPORT & RESOURCES
================================ */

.jb-career-section {
  padding: 80px 8%;
  background: #F4F8FF;
  font-family: 'Poppins', sans-serif;
}

.jb-career-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.jb-career-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0B1957;
}

.jb-career-subtitle {
  font-size: 16px;
  margin-bottom: 45px;
  color: #4B4B4B;
}

/* Horizontal Ribbon Layout */
/* Fix alignment for horizontal ribbon */
.jb-career-ribbon {
  display: flex;
  justify-content: flex-start;
  /* Align cards to start */
  gap: 28px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
  padding-left: 10px;
  /* Add small padding for smooth start */
  scrollbar-width: thin;
  scrollbar-color: #a5c7ff #eaf1ff;
}


/* Scrollbar (Chrome/Edge) */
.jb-career-ribbon::-webkit-scrollbar {
  height: 6px;
}

.jb-career-ribbon::-webkit-scrollbar-track {
  background: #eaf1ff;
}

.jb-career-ribbon::-webkit-scrollbar-thumb {
  background: #a5c7ff;
  border-radius: 4px;
}

/* Card */
.jb-career-card {
  background: linear-gradient(145deg, #ffffff, #e9f3ff);
  border-radius: 14px;
  padding: 24px 22px;
  min-width: 230px;
  max-width: 260px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(0, 80, 170, 0.07);
  border: 1px solid #ddecff;
  transition: all .25s ease;
  cursor: pointer;
}

.jb-career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0, 80, 170, 0.12);
  border-color: #80b8ff;
}

/* Icon */
.jb-career-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-block;
}

/* Headings */
.jb-career-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0B1957;
  margin-bottom: 6px;
}

/* Text */
.jb-career-card p {
  font-size: 14px;
  color: #4A4A4A;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .jb-career-title {
    font-size: 28px;
  }

  .jb-career-card {
    min-width: 200px;
  }
}









/* ================================ Start Top Companies ============================= */
/* Container */
.jb-com-container {
  padding: 70px 0;
  background: linear-gradient(90deg, #f6f8ff, #ffffff);
}

/* Section wrapper */
.jb-com-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 0 20px;
}

/* Title */
.jb-com-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0e1b4d;
  margin-bottom: 10px;
}

.jb-com-title span {
  color: #3064ff;
  /* your brand highlight */
}

/* Sub text */
.jb-com-subtext {
  color: #5a6275;
  font-size: 1rem;
  margin-bottom: 35px;
}

/* Scroller container */
.jb-com-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Track animation */
.jb-com-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: jb-scroll 22s linear infinite;
}

/* Company items */
.jb-com-item {
  padding: 10px 22px;
  font-size: 0.95rem;
  border: 1px solid #d3daee;
  border-radius: 30px;
  background: #fff;
  cursor: default;
  transition: 0.25s ease;
  font-weight: 500;
  white-space: nowrap;
}

/* Hover effect */
.jb-com-item:hover {
  background: #3064ff;
  color: #fff;
  border-color: #3064ff;
  transform: translateY(-3px);
}

/* Animation */
@keyframes jb-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .jb-com-title {
    font-size: 1.8rem;
  }

  .jb-com-item {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* ================================ Start Top Companies ============================= */










/* =========================start-of-footer===================================== */

.job-foot-footer {
  background: linear-gradient(180deg, #041033 0%, #02061a 100%);
  color: #dbe9ff;
  padding: 48px 6%;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  box-shadow: 0 -6px 30px rgba(2, 8, 30, 0.25);
}

/* wrapper grid */
.job-foot-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}

/* columns */
.job-foot-col {}

/* logo block */
.job-foot-logowrap {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.job-foot-logoimg {
  width: 58px;
  height: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
}

.job-foot-brand {
  margin: 0;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.job-foot-tagline {
  margin: 2px 0 0;
  font-size: 13px;
  color: #8fc5ff;
  font-weight: 600;
}

/* short about */
.job-foot-about {
  margin-top: 10px;
  color: #bcd7ff;
  font-size: 14px;
  line-height: 1.6;
  max-width: 420px;
}

/* headings */
.job-foot-heading {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
}

/* link lists */
.job-foot-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.job-foot-links li {
  margin-bottom: 10px;
}

.job-foot-links a {
  color: #cfe2ff;
  text-decoration: none;
  font-size: 14px;
  transition: color .18s ease, transform .18s ease;
}

.job-foot-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* support column */
.job-foot-support {
  color: #dceeff;
  font-size: 14px;
  margin: 6px 0;
}

.job-foot-support a {
  color: #fff;
  text-decoration: underline;
}

/* CTA button in footer (subtle) */
.job-foot-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  background: linear-gradient(90deg, #2c7bff, #6ab3ff);
  color: #001331;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(66, 133, 244, 0.12);
}

/* bottom copyright */
.job-foot-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.job-foot-bottom p {
  color: #9fb0d9;
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.2px;
}

/* responsiveness */
@media (max-width: 980px) {
  .job-foot-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .job-foot-about {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .job-foot-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-foot-logowrap {
    align-items: flex-start;
  }

  .job-foot-cta {
    width: 100%;
    text-align: center;
  }
}


/* =========================end-of-footer===================================== */