 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Montserrat", sans-serif;
 }

 html,
 body {
     /* height: 100%; */
     margin: 0;
 }



 body {
     background: linear-gradient(180deg, #E3F3FB 0%, #ffffff 30%);
     color: #03304c;
     padding: 0;
     /* display: flex;
     justify-content: center; */
 }




 
/* ================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;
  text-decoration: none;
}

.jobVac-auth a:hover {
  background: #3365ff;
  color: #fff;

}


.jobVac-auth button:hover {
    background: #3365ff;
    color: #fff;
}



/* ========================nav-end========================= */
/* =========================
      CONTACT SECTION
*/

.cnt-contact-text a{
    color:#445e6f;
    text-decoration:none;
    font-weight:500;
}

.cnt-contact-text a:hover{
    text-decoration:underline;
}

.cnt-wrap {
    max-width: 1180px;
    margin: 40px auto;
    padding: 36px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff, #fff);
    box-shadow: 0 8px 30px rgba(12, 35, 63, 0.06);
    position: relative;
    overflow: hidden;
}

.cnt-grid {
    display: flex;
    gap: 44px;
    align-items: center;
    flex-wrap: wrap;
}

/* ---------- Left hero ---------- */
.cnt-left {
    flex: 1;
    min-width: 320px;
    padding: 12px 6px;
}

.cnt-eyebrow {
    font-size: 12px;
    color: #6c7a86;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-weight: 600;
}

.cnt-headline {
    font-size: 44px;
    line-height: 1.03;
    color: #0b2a45;
    margin: 0 0 18px;
    font-weight: 800;
}

.cnt-headline .cnt-accent {
    color: #0a66c2
}

.cnt-sub {
    color: #516673;
    font-size: 15px;
    max-width: 520px;
    margin-bottom: 28px;
}

/* contact items */
.cnt-contacts {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 12px
}

.cnt-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.cnt-icon-wrap {
    min-width: 44px;
    height: 44px;
    background: #f0f8ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cnt-contact-title {
    font-weight: 700;
    color: #152d43;
    margin-bottom: 4px;
    font-size: 14px;
}

.cnt-contact-text {
    color: #445e6f;
    font-size: 15px
}

/* ---------- Right card form ---------- */
.cnt-card-wrap {
    flex: 0 0 480px;
    min-width: 300px;
    padding: 6px
}

.cnt-card {
    background: white;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(12, 35, 63, 0.06);
    border: 1px solid rgba(10, 102, 194, 0.04);
}

/* inner rounded area like reference */
.cnt-card-inner {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
}

/* inputs */
.cnt-form {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.cnt-field {
    display: block
}

.cnt-label {
    display: block;
    font-size: 13px;
    color: #365062;
    margin-bottom: 6px;
    font-weight: 600
}

.cnt-input,
.cnt-select,
.cnt-textarea {
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid rgba(10, 30, 60, 0.06);
    background: #f7fbff;
    color: #0c324f;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: box-shadow .15s, border-color .15s;
}

.cnt-input:focus,
.cnt-select:focus,
.cnt-textarea:focus {
    border-color: #0a66c2;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.06);
}

.cnt-textarea {
    min-height: 110px;
    resize: vertical
}

/* CTA — pill with circular icon on left */
.cnt-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 6px
}

.cnt-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(180deg, #1984ff, #0a66c2);
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(10, 102, 194, 0.18);
}

.cnt-cta .cnt-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    margin-right: 6px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(12, 35, 63, 0.08);
}

.cnt-cta .cnt-cta-icon svg {
    width: 20px;
    height: 20px;
    fill: #0a66c2;
}

/* small note under CTA */
.cnt-note {
    font-size: 13px;
    color: #6a7883;
    margin-top: 10px
}

/* support intro text */
.job-foot-support-text{
  font-size:14px;
  color:#9fc8ff;
  margin-bottom:14px;
}

/* support list */
.job-foot-support-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* each support row */
.job-foot-support-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#dceeff;
}

/* label text */
.job-foot-support-item span{
  min-width:110px;
  font-weight:500;
  color:#cfe2ff;
}

/* links */
.job-foot-support-item a{
  color:#ffffff;
  text-decoration:none;
  font-weight:500;
}

.job-foot-support-item a:hover{
  text-decoration:underline;
}

/* icons */
.job-foot-support-item svg{
  flex-shrink:0;
}




/* =========================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 */

/* 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;
}



/* =========================end-of-footer===================================== */