* {
  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;
}

/* Admin Top Bar */
.admin-top-bar {
  width: 100%;
  background-color: #f1f9ff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 5px 25px;
  border-bottom: 2px solid #69BBDD;

}

/* Admin Login Link */
.admin-login-link {
  color: #001331;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  transition: all 0.3s ease;
}

.admin-login-link:hover {
  background-color: #69BBDD;
  color: #000;
}


/* ================start- NAVIGATION SECTION ==================== */

.jobVac-header {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.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;
}



/* ========================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;
}



.search-group {
    position: relative;
}

.suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    z-index: 999;
    display: none;
}

.suggestions-box div {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}

.suggestions-box div:hover {
        background: #2563eb;
    color: #fff;
}


/* ===================end-of-hero-banner====================================== */



/* --=========================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;
}




/* ============================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;
}



/* ====================================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);
}


/* ==========================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;
}



/* ================================= */


/* ================================
   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;
}
















/* ==============================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);
}



/* ==============================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;
}



/* ===========================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);
}



/* ============================= 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;
}





/* ================================ 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%);
  }
}



/* ================================ Start Top Companies ============================= */






/* ================start-of- JOBVACANT OFFERS SECTION =================== */

.cmp-ofr-section {
  background-color: #E3F3FB;
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Decorative soft blob */
.cmp-ofr-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(0, 120, 183, 0.15);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

/* Heading */
.cmp-ofr-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.cmp-ofr-heading {
  font-size: 50px;
  font-weight: 800;
  color: #003b5c;
  margin-bottom: 0.6rem;
}

.cmp-ofr-subheading {
  font-size: 20px;
  color: #01506b;
  font-weight: 500;
  margin-bottom: 1rem;
}

.cmp-ofr-desc {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}

/* Offers Layout */
.cmp-ofr-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.cmp-ofr-item {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem 2.5rem;
  width: 260px;
  box-shadow: 0 10px 25px rgba(0, 59, 92, 0.1);
  transition: all 0.3s ease;
  position: relative;
  transform: rotate(-1deg);
}

.cmp-ofr-item:nth-child(2n) {
  transform: rotate(1deg);
  top: 10px;
}

.cmp-ofr-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 59, 92, 0.2);
}

/* Icons */
.cmp-ofr-icon {
  font-size: 2rem;
  color: #0078b7;
  margin-bottom: 1rem;
}

/* Titles & Text */
.cmp-ofr-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003b5c;
  margin-bottom: 0.6rem;
}

.cmp-ofr-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

/* Card Button */
.cmp-ofr-card-btn {
  background-color: #0078b7;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 120, 183, 0.25);
}

.cmp-ofr-card-btn:hover {
  background-color: #005f8a;
  box-shadow: 0 6px 14px rgba(0, 95, 138, 0.35);
  transform: translateY(-2px);
}




/* ================end-of- JOBVACANT OFFERS SECTION =================== */




/* --=========================start-hire-type============================ -- */


.hire-type-section {
  background-color: #006CA9;
  padding: 50px 6%;
  text-align: center;
}

.hire-type-header {
  max-width: 1000px;
  margin: 0 auto 60px auto;
}

.hire-type-heading {
  font-size: 50px;
  color: #fefeff;
  font-weight: 800;
}

.hire-type-subheading {
  font-size: 20px;
  color: #c8c8c8;
  margin-top: 10px;
}

.hire-type-desc {
  font-size: 1rem;
  color: #d5f0ff;
  line-height: 1.7;
  max-width: 700px;
  margin: 15px auto 0 auto;
}

/* Container */
.hire-type-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}

/* Card Design */
.hire-type-card {
  background: rgba(255, 255, 255, 0.46);
  width: 320px;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #ffffff;
}

.hire-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Icon */
.hire-type-icon {
  font-size: 2rem;
  background-color: #E3F3FB;
  color: #0098C7;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Titles & Text */
.hire-type-title {
  font-size: 1.4rem;
  color: #0B3D60;
  margin-bottom: 10px;
}

.hire-type-info {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.hire-type-steps {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.hire-type-steps li {
  background: #E3F3FB;
  padding: 10px 15px;
  margin: 6px 0;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #0B3D60;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Button */
.hire-type-btn {
  background-color: #0098C7;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hire-type-btn:hover {
  background-color: #0B3D60;
}


/* --=========================end-hire-type============================ -- */




/* --=========================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-hire-steps============================ -- */

.cmp-step-section {
  position: relative;
  /* background: linear-gradient(180deg, #E3F3FB 0%, #B3E5FC 100%); */
  background: linear-gradient(90deg, #E3F3FB, #cfdeff);

  overflow: hidden;
  padding: 80px 20px;
}

/* Glowing gradient blobs */
.cmp-step-section::before,
.cmp-step-section::after {
  content: "";
  position: absolute;
  width: 850px;
  height: 850px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 140, 200, 0.25), transparent 70%);
  filter: blur(70px);
  z-index: 0;
  animation: floatBg 10s ease-in-out infinite alternate;
}

.cmp-step-section::before {
  top: -300px;
  left: -200px;
}

.cmp-step-section::after {
  bottom: -400px;
  right: -150px;
  animation-delay: 2s;
}

/* Floating accent circles */
.cmp-step-section span.cmp-step-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 108, 169, 0.15);
  animation: drift 12s infinite ease-in-out alternate;
}

.cmp-step-section span.c1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 20%;
}

.cmp-step-section span.c2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 25%;
}

.cmp-step-section span.c3 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  left: 35%;
}

@keyframes floatBg {
  from {
    transform: translateY(0px) scale(1);
  }

  to {
    transform: translateY(40px) scale(1.05);
  }
}

@keyframes drift {
  from {
    transform: translateY(0px);
    opacity: 0.6;
  }

  to {
    transform: translateY(-40px);
    opacity: 0.3;
  }
}

/* Main container */
.cmp-step-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.cmp-step-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: #004F79;
  background: linear-gradient(90deg, #004F79, #0097E6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.cmp-step-subheading {
  font-size: 1.1rem;
  color: #045A8D;
  margin: 10px 0 50px;
  font-weight: 500;
}

/* Tabs */
.cmp-step-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.cmp-step-tab {
  background: #fff;
  border: 2px solid #0097E6;
  color: #006CA9;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 151, 230, 0.15);
}

.cmp-step-tab.active,
.cmp-step-tab:hover {
  background: linear-gradient(90deg, #006CA9, #00AEEF);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 151, 230, 0.4);
}

/* Timeline */
.cmp-step-timeline {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  z-index: 2;
}

.cmp-step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.cmp-step-item::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50px;
  height: calc(100% - 50px);
  width: 3px;
  background: linear-gradient(to bottom, #0097E6, transparent);
  z-index: 0;
}

.cmp-step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #006CA9, #00AEEF);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  margin-right: 25px;
  box-shadow: 0 6px 15px rgba(0, 108, 169, 0.4);
}

.cmp-step-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #004F79;
  margin-bottom: 6px;
}

.cmp-step-content p {
  color: #033B57;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cmp-step-flow.show {
  animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --=========================end-hire-steps============================ -- */



/* --=========================start-cta============================ -- */


.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fbff;
  border-radius: 20px;
  padding: 60px 80px;
  margin: 60px auto;
  max-width: 1100px;
  box-shadow: 0 10px 25px rgba(0, 80, 150, 0.08);
  overflow: hidden;
}

.cta-content {
  max-width: 550px;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2rem;
  color: #002b5c;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  color: #334e68;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background: #0078d7;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 120, 215, 0.3);
}

.cta-btn:hover {
  background: #005fa3;
  box-shadow: 0 8px 25px rgba(0, 120, 215, 0.4);
}

/* Right graphic part */
.cta-graphic {
  position: relative;
  width: 240px;
  height: 200px;
}


/* ----------------------===========-----remember-it------------===============--------------- */

.ctacircle {
  width: 90px;
  height: 90px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 40px;
  left: 70px;
  z-index: 2;
}

.ctacircle::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 28%;
  width: 12px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 25px 0 #fff;
}

.ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 3px solid #bcd2e5;
  border-radius: 50%;
  top: 20px;
  left: 40px;
  z-index: 1;
  animation: spin 8s linear infinite;
}

.star {
  position: absolute;
  background: #a5ff00;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  width: 50px;
  height: 50px;
  z-index: 0;
  filter: drop-shadow(0 0 10px rgba(165, 255, 0, 0.5));
}

.star1 {
  bottom: 10px;
  right: 50px;
}

.star2 {
  top: 10px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #b2e0ff;
  filter: drop-shadow(0 0 8px rgba(178, 224, 255, 0.5));
}

/* -------------------=================--------remember-it------================--------------------- */


@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



/* --=========================end-cta============================ -- */



/* -- --=========================start-faq============================ -- -- */


.comp-faq-section {
  background-color: #E3F3FB;
  padding: 50px 6%;
  text-align: center;
}

.comp-faq-header {
  max-width: 750px;
  margin: 0 auto 60px;
}

.comp-faq-heading {
  font-size: 40px;
  color: #0B3D60;
  font-weight: 800;
}

.comp-faq-subheading {
  font-size: 20px;
  color: #31708E;
  margin-top: 10px;
}

.comp-faq-desc {
  font-size: 17px;
  color: #4A5F6A;
  margin-top: 15px;
  line-height: 1.6;
}

/* FAQ Container */
.comp-faq-container {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.comp-faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.comp-faq-item.active {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Question */
.comp-faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 20px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #0B3D60;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: all 0.3s ease;
}

.comp-faq-question:hover {
  background-color: #D9EEF8;
}

.comp-faq-icon {
  font-size: 1.5rem;
  color: #0098C7;
  transition: transform 0.3s ease;
}

.comp-faq-item.active .comp-faq-icon {
  transform: rotate(45deg);
}

/* Answer */
.comp-faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #F8FCFF;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
}

.comp-faq-item.active .comp-faq-answer {
  max-height: 300px;
  padding: 20px 25px;
}

.comp-faq-answer p {
  color: #4A5F6A;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* -- --=========================end-faq============================ -- -- */


/* =========================start-of-footer===================================== */

.job-foot-footer{
  background: linear-gradient(180deg,#041033 0%, #02061a 100%);
  color:#dbe9ff;
  padding:48px 6%;
  font-family:"Poppins",system-ui;
}

/* grid layout */

.job-foot-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:30px;
}

/* logo block */

.job-foot-logowrap{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.job-foot-logoimg{
  width:56px;
}

.job-foot-brand{
  font-size:20px;
  color:#fff;
  margin:0;
}

.job-foot-tagline{
  font-size:13px;
  color:#8fc5ff;
  margin:2px 0 0;
}

.job-foot-about{
  font-size:14px;
  line-height:1.6;
  color:#bcd7ff;
}

/* headings */

.job-foot-heading{
  color:#fff;
  font-size:16px;
  margin-bottom:12px;
}

/* links */

.job-foot-links{
  list-style:none;
  padding:0;
  margin:0;
}

.job-foot-links li{
  margin-bottom:10px;
}

.job-foot-links a{
  color:#cfe2ff;
  text-decoration:none;
  font-size:14px;
  transition:0.2s;
}

.job-foot-links a:hover{
  color:#fff;
  transform:translateX(4px);
}

/* support card */

.job-foot-helpcol{
  background:rgba(255,255,255,0.03);
  padding:18px;
  border-radius:10px;
}

/* support text */

.job-foot-support-text{
  font-size:14px;
  color:#9fc6ff;
  margin-bottom:14px;
}

/* support list */

.job-foot-support-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.job-foot-support-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
}

.job-foot-support-item span{
  color:#9fc6ff;
}

.job-foot-support-item a{
  color:#3fa0ff;
  text-decoration:none;
  font-weight:500;
}

.job-foot-support-item a:hover{
  color:#fff;
}

/* button */

.job-foot-cta{
  display:inline-block;
  margin-top:14px;
  padding:8px 14px;
  background:linear-gradient(90deg,#2c7bff,#6ab3ff);
  color:#001331;
  font-size:13px;
  font-weight:700;
  border-radius:8px;
  text-decoration:none;
}

/* bottom */

.job-foot-bottom{
  max-width:1200px;
  margin:28px auto 0;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,0.06);
  text-align:center;
}

.job-foot-bottom p{
  font-size:13px;
  color:#9fb0d9;
}

/* =========================end-of-footer===================================== */