*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#1a2a6c;--navy2:#243580;--navy3:#2e4099;
  --gold:#f5a623;--gold2:#d98d10;
  --white:#fff;--off:#f4f5f9;--border:#e0e4ef;
  --dark:#1c1c2e;--muted:#5a6070;
  --green:#27ae60;--orange:#e67e22;--blue:#2980b9;
}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:var(--off);color:var(--dark);overflow-x:hidden}

label.error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

input.error,
select.error,
textarea.error {
    border: 1px solid red !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 435px;
  padding: 70px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;

  background:
    linear-gradient(rgba(31, 73, 145, 0.82), rgba(31, 73, 145, 0.82)),
    url("../images/career/1ee8f981f84a2a2a777e8813d301646e463af85f.png") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero p {
  color: #fff;
  font-size: 22px;
  line-height: 1.55;
  max-width: 850px;
  margin-bottom: 24px;
}

.btn-notify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffaa16;
  color: #fff;
  padding: 16px 44px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
}

.hero-image-card {
  position: relative;
  z-index: 2;
  width: 335px;
  height: 335px;
  flex: 0 0 335px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 55px 30px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-image-card {
    width: 100%;
    max-width: 360px;
    height: 280px;
    flex: none;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero {
    padding: 45px 20px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p {
    font-size: 16px;
  }

  .btn-notify {
    padding: 14px 30px;
    font-size: 15px;
  }

  .hero-image-card {
    height: 230px;
  }
}

.btn{
  display:inline-flex;align-items:center;gap:.45rem;
  background:var(--gold);color:var(--navy);font-weight:700;font-size:.88rem;
  padding:.78rem 1.8rem;border-radius:50px;text-decoration:none;border:none;cursor:pointer;
  transition:background .2s,transform .2s,box-shadow .2s;
  box-shadow:0 4px 18px rgba(245,166,35,.35);
}
.btn:hover{background:var(--gold2);transform:translateY(-2px);box-shadow:0 8px 28px rgba(245,166,35,.45)}
.btn-ghost{
  display:inline-flex;align-items:center;gap:.45rem;
  background:transparent;color:#fff;font-weight:600;font-size:.88rem;
  padding:.76rem 1.8rem;border-radius:50px;text-decoration:none;
  border:2px solid rgba(255,255,255,.35);cursor:pointer;transition:all .2s;
}
.btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.1)}

/* ── SECTION SHELL ── */
.section{padding:72px 5%}
.sec-title{text-align:center;margin-bottom:2.6rem}
.sec-title h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(1.8rem,3.5vw,2.6rem);letter-spacing:.04em;color:var(--dark)}
.sec-title p{color:var(--muted);font-size:.92rem;margin-top:.4rem}

/* ── WHY JOIN CARDS ── */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.2rem;
  max-width:1080px;
  margin:0 auto;
}

.why-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:1.6rem;
  position:relative;
  overflow:hidden;
  min-height:190px;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor:pointer;
}

/* Image only on hover */
.why-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:1.6rem;
  position:relative;
  overflow:hidden;
  min-height:190px;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor:pointer;
}

/* Image hover effect from bottom-left to top-right */
.why-card::before{
  content:'';
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background-image:
    linear-gradient(rgba(26,42,108,.84), rgba(26,42,108,.84)),
    var(--card-img);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0.9;
  transform:translate(-100%, 100%);
  transition:transform .55s ease, opacity .35s ease;
  z-index:0;
}
.why-card:hover::before{
  opacity:1;
  transform:translate(0, 0);
}

/* Blue corner line */
.why-card::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:55px;
  height:22px;
  background:var(--navy);
  border-radius:0 13px 0 0;
  /*z-index:2;*/
  /*transition:width .45s ease, transform .45s ease;*/
  /*transform-origin:left bottom;*/
}

/* Hover */
.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(26,42,108,.22);
  border-color:rgba(26,42,108,.25);
}

/* Expands image overlay diagonally */
.why-card:hover::before{
  width:170%;
  height:170%;
  opacity:1;
}

/* Blue line extends toward top-right */
/*.why-card:hover::after{*/
/*  width:145%;*/
/*  transform:rotate(-28deg);*/
/*}*/

.why-icon,
.why-card h3,
.why-card p{
  position:relative;
  z-index:3;
}

.why-icon{
  width:44px;
  height:44px;
  background:rgba(26,42,108,.08);
  border-radius:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1rem;
  color:var(--navy);
  transition:.35s ease;
}

.why-card h3{
  font-size:1rem;
  font-weight:700;
  margin-bottom:.45rem;
  color:var(--dark);
  transition:.35s ease;
}

.why-card p{
  font-size:.83rem;
  color:var(--muted);
  line-height:1.6;
  transition:.35s ease;
}

.why-card:hover .why-icon{
  background:rgba(255,255,255,.18);
  color:#fff;
}

.why-card:hover h3,
.why-card:hover p{
  color:#fff;
}

/* ── SEARCH / FILTER BAR ── */
.filter-bar{
  background:#f3f6fa;
  padding:72px 5%;
}

.filter-box{
  max-width:1430px;
  margin:0 auto;
  background:#f6f8fb;
  border:1px solid #dce5ef;
  border-radius:16px;
  padding:28px;
}

.filter-top{
  display:grid;
  grid-template-columns:1fr 168px 140px;
  gap:28px;
  align-items:center;
  margin-bottom:28px;
}

.search-wrap{
  position:relative;
}

.search-wrap svg{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  color:#737984;
}

.search-wrap input{
  width:100%;
  height:57px;
  border:1px solid #c2c8d1;
  border-radius:8px;
  background:#f8fafc;
  padding:0 18px 0 58px;
  font-size:20px;
  color:#333;
  outline:none;
  font-family:inherit;
}

.search-wrap input::placeholder{
  color:#737984;
}

.filter-select{
  height:57px;
  border:1px solid #c2c8d1;
  border-radius:8px;
  background:#f8fafc;
  padding:0 20px;
  font-size:18px;
  color:#222;
  outline:none;
  font-family:inherit;
  cursor:pointer;
}

.filter-btn{
  height:57px;
  border:none;
  border-radius:8px;
  background:#1f4f96;
  color:#fff;
  font-size:18px;
  font-weight:500;
  font-family:inherit;
  cursor:pointer;
}

.filter-btn:hover{
  background:#173f7a;
}

.filter-tags{
  display:flex;
  align-items:center;
  flex-wrap:nowrap;
  gap:10px;
}

.ftag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:48px;
  padding:0 28px;
  border-radius:50px;
  background:#e8ebee;
  color:#484b51;
  font-size:18px;
  font-weight:400;
  cursor:pointer;
  white-space:nowrap;
  border:none;
  transition:.25s ease;
}

.ftag.active,
.ftag:hover{
  background:#1f4f96;
  color:#fff;
}

/* Tablet */
@media(max-width:1200px){
  .filter-tags{
    flex-wrap:wrap;
  }
}

@media(max-width:991px){
  .filter-top{
    grid-template-columns:1fr;
    gap:15px;
  }

  .filter-tags{
    flex-wrap:wrap;
  }
}

/* Mobile */
@media(max-width:575px){
  .filter-bar{
    padding:40px 16px;
  }

  .filter-box{
    padding:18px;
  }

  .search-wrap input,
  .filter-select,
  .filter-btn{
    height:52px;
    font-size:15px;
  }

  .ftag{
    height:42px;
    padding:0 18px;
    font-size:14px;
  }
}

/* ── AVAILABLE POSITIONS ── */
.positions-section{padding:64px 5% 80px}
.positions-header{display:flex;align-items:center;justify-content:space-between;max-width:1080px;margin:0 auto 1.8rem}
.positions-header h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(1.6rem,3vw,2.2rem);letter-spacing:.04em}
.positions-header small{font-size:.82rem;color:var(--muted)}
.pos-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;max-width:1080px;margin:0 auto}
.pos-card{
  background:#fff;border:1px solid var(--border);border-radius:14px;padding:1.5rem;
  display:flex;flex-direction:column;gap:.6rem;transition:transform .22s,box-shadow .22s;
}
.pos-card:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(26,42,108,.12)}
.pos-dept{display:flex;align-items:center;gap:.5rem;margin-bottom:.2rem}
.dept-dot{width:8px;height:8px;border-radius:50%;background:var(--navy);flex-shrink:0}
.dept-name{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted)}
.pos-title{font-size:1rem;font-weight:700;color:var(--dark);line-height:1.3}
.pos-desc{font-size:.82rem;color:var(--muted);line-height:1.55;flex:1}
.pos-meta{display:flex;flex-wrap:wrap;gap:.45rem;margin-top:.3rem}
.pmeta{font-size:.72rem;font-weight:600;padding:.22rem .65rem;border-radius:50px;display:flex;align-items:center;gap:.3rem}
.pmeta-exp{background:rgba(26,42,108,.08);color:var(--navy)}
.pmeta-type{background:rgba(39,174,96,.12);color:var(--green)}
.pmeta-loc{background:rgba(245,166,35,.15);color:#a06a0a}
.pos-footer{display:flex;align-items:center;justify-content:space-between;margin-top:.5rem;padding-top:.8rem;border-top:1px solid var(--border)}
.pos-salary{font-size:.8rem;font-weight:700;color:var(--navy)}
.apply-btn{
  background:var(--navy);color:#fff;border:none;border-radius:6px;
  padding:.42rem 1.1rem;font-size:.78rem;font-weight:600;font-family:inherit;cursor:pointer;
  transition:background .18s;
}
.apply-btn:hover{background:var(--navy2)}
.show-more{text-align:center;margin-top:2rem}
.show-more a{color:var(--navy);font-weight:600;font-size:.88rem;text-decoration:none;display:inline-flex;align-items:center;gap:.35rem}
.show-more a:hover{color:var(--gold2)}

/* ── LIFE AT SALASAR ── */
.life-section{background:#fff;padding:72px 5%}
.life-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:1rem;max-width:1080px;margin:0 auto;
}
.life-img{border-radius:12px;overflow:hidden;background:#d0d5e8}
.life-img img{width:100%;height:100%;object-fit:cover;display:block}
.life-img.big{grid-row:1/3;min-height:340px}
.life-img.small{min-height:160px}
.life-img-ph{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#c5cbe8,#a8b0d8)}
.life-img-ph svg{opacity:.35}

/* ── CORE VALUES ── */
.values-section{padding:72px 5%}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;max-width:1080px;margin:0 auto}
.val-card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:1.8rem 1.4rem;text-align:center;transition:transform .22s,box-shadow .22s}
.val-card:hover{transform:translateY(-4px);box-shadow:0 8px 28px rgba(26,42,108,.12)}
.val-icon{width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:1.4rem}
.val-card h3{font-size:.95rem;font-weight:700;margin-bottom:.45rem}
.val-card p{font-size:.8rem;color:var(--muted);line-height:1.6}
.vi-blue{background:rgba(41,128,185,.12);color:var(--blue)}
.vi-green{background:rgba(39,174,96,.12);color:var(--green)}
.vi-navy{background:rgba(26,42,108,.1);color:var(--navy)}
.vi-rose{background:rgba(231,76,60,.1);color:#e74c3c}

/* ── BOTTOM CTA ── */
/*.bottom-cta{*/
/*  background:linear-gradient(120deg,var(--navy) 60%,var(--navy3) 100%);*/
/*  padding:72px 5%;text-align:center;position:relative;overflow:hidden;*/
/*}*/
/*.bottom-cta::before{*/
/*  content:'';position:absolute;inset:0;*/
/*  background-image:radial-gradient(circle,rgba(255,255,255,.05) 1px,transparent 1px);*/
/*  background-size:22px 22px;pointer-events:none;*/
/*}*/
/*.bottom-cta h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(1.8rem,3.5vw,2.8rem);color:#fff;letter-spacing:.05em;position:relative}*/
/*.bottom-cta p{color:rgba(255,255,255,.75);font-size:.92rem;margin:.7rem auto 2rem;max-width:440px;position:relative}*/
/*.cta-row{display:flex;justify-content:center;gap:.8rem;flex-wrap:wrap;position:relative}*/

/* ── BOTTOM CTA ── */
.bottom-cta{
  background:#f3f6fa;
  padding:110px 5% 105px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.bottom-cta h2{
  font-family:inherit;
  font-size:38px;
  line-height:1.2;
  color:#050505;
  font-weight:800;
  margin:0 0 16px;
  letter-spacing:-0.5px;
}

.bottom-cta p{
  color:#454b55;
  font-size:18px;
  line-height:1.45;
  max-width:690px;
  margin:0 auto 42px;
}

.bottom-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  height:60px;
  padding:0 42px;
  border-radius:7px;
  background:#ff6b1a;
  color:#fff;
  text-decoration:none;
  font-size:20px;
  font-weight:700;
  box-shadow:0 14px 28px rgba(0,0,0,.16);
  transition:.25s ease;
}

.bottom-cta-btn:hover{
  background:#f05f10;
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(0,0,0,.2);
}

.bottom-cta-btn svg{
  flex:0 0 auto;
}

/* Mobile */
@media(max-width:575px){
  .bottom-cta{
    padding:75px 20px;
  }

  .bottom-cta h2{
    font-size:28px;
  }

  .bottom-cta p{
    font-size:15px;
    margin-bottom:30px;
  }

  .bottom-cta-btn{
    width:100%;
    max-width:310px;
    height:54px;
    font-size:16px;
    padding:0 24px;
  }
}

/* FOOTER */
footer{background:#101828;color:rgba(255,255,255,.45);text-align:center;padding:1.4rem 5%;font-size:.78rem}
footer span{color:var(--gold)}

/* ANIM */
.anim{opacity:0;transform:translateY(18px);transition:opacity .5s ease,transform .5s ease}
.anim.visible{opacity:1;transform:none}

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .pos-grid{grid-template-columns:repeat(2,1fr)}
  .values-grid{grid-template-columns:repeat(2,1fr)}
  .life-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto auto auto}
  .life-img.big{grid-column:1/3;grid-row:1;min-height:220px}
}
@media(max-width:680px){
  nav{padding:0 4%}
  .nav-links{display:none;flex-direction:column;position:absolute;top:58px;left:0;right:0;background:var(--navy);padding:1.4rem 1.6rem;border-top:1px solid rgba(255,255,255,.1);gap:1.1rem;list-style:none}
  .nav-links.open{display:flex}
  .hamburger{display:flex}
  .why-grid,.pos-grid,.values-grid{grid-template-columns:1fr}
  .life-grid{grid-template-columns:1fr}
  .life-img.big{grid-column:auto;min-height:200px}
  .life-img.small{min-height:150px}
  .positions-header{flex-direction:column;align-items:flex-start;gap:.4rem}
  .section,.positions-section,.life-section,.values-section,.bottom-cta{padding:52px 4%}
  .filter-bar{padding:1rem 4%}
}

.btn1-notify {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.92rem;
      padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 18px rgba(245,166,35,0.35);
    }
.btn1-notify:hover { background: #cb8e28d1; transform: translateY(-2px);  }


.job-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  padding:30px;
  z-index:9999;
}

.job-modal-overlay.active{
  display:flex;
}

.job-modal{
  width:100%;
  max-width:1050px;
  max-height:90vh;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  animation:modalZoom .25s ease;
}

@keyframes modalZoom{
  from{
    opacity:0;
    transform:scale(.94);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

.job-modal-body{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:55px;
  padding:34px;
  max-height:72vh;
  overflow-y:auto;
}

.job-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#1f4f96;
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:4px 16px;
  border-radius:20px;
  margin-bottom:10px;
}

.job-header-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:25px;
}

.job-detail-left h2{
  font-size:28px;
  line-height:1.1;
  color:#1f4f96;
  margin:0 0 8px;
  font-weight:800;
}

.job-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  color:#50545b;
  font-size:13px;
  font-weight:600;
}

.job-meta span{
  display:inline-flex;
  align-items:center;
  gap:4px;
}

.apply-now-btn{
  background:#ff6b1a;
  color:#fff;
  min-width:150px;
  height:46px;
  border-radius:5px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  font-size:14px;
  text-decoration:none;
  box-shadow:0 8px 18px rgba(255,107,26,.25);
}

.job-detail-left hr{
  border:none;
  border-top:1px solid #d8dce3;
  margin:18px 0;
}

.job-section{
  margin-bottom:28px;
}

.job-section h4{
  color:#111;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:14px;
}

.job-section p{
  color:#4d535c;
  font-size:14px;
  line-height:1.65;
  max-width:430px;
}

.job-list{
  list-style:none;
  padding:0;
  margin:0;
}

.job-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:13px;
  color:#4d535c;
  font-size:14px;
  line-height:1.45;
}

.job-list li::before{
  content:'✓';
  position:absolute;
  left:0;
  top:1px;
  width:14px;
  height:14px;
  border:1.5px solid #ff6b1a;
  color:#ff6b1a;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:9px;
  font-weight:800;
}

.job-apply-card{
  background:#fff;
  border:1px solid #e1e7ef;
  border-radius:10px;
  padding:32px;
  box-shadow:0 14px 40px rgba(31,79,150,.08);
  align-self:start;
}

.job-apply-card h3{
  font-size:15px;
  font-weight:600;
  color:#111;
  margin-bottom:25px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-group{
  margin-bottom:18px;
}

.form-group label{
  display:block;
  color:#525966;
  font-size:12px;
  font-weight:700;
  margin-bottom:8px;
}

.form-group input{
  width:100%;
  height:42px;
  border:1px solid #dfe5ee;
  border-radius:6px;
  padding:0 13px;
  font-size:13px;
  color:#333;
  outline:none;
  font-family:inherit;
}

.form-group input:focus{
  border-color:#1f4f96;
  box-shadow:0 0 0 3px rgba(31,79,150,.1);
}

.upload-box{
  min-height:78px;
  border:1.5px dashed #dbe3ee;
  border-radius:8px;
  background:#fbfcfe;
  display:flex !important;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  cursor:pointer;
  color:#8491a4 !important;
}

.upload-box strong{
  color:#1f4f96;
  font-size:13px;
  margin-top:4px;
}

.upload-box span{
  color:#7d8795;
  font-size:12px;
  margin-top:3px;
}

.submit-application-btn{
  width:100%;
  height:44px;
  border:none;
  border-radius:6px;
  background:#1f4f96;
  color:#fff;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}

.job-modal-footer{
  height:60px;
  background:#e9eef3;
  border-top:1px solid #d6dce3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 34px;
}

.share-actions{
  display:flex;
  gap:8px;
}

.share-actions button{
  width:32px;
  height:32px;
  border:none;
  border-radius:4px;
  background:#1f4f96;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-weight:700;
}

.share-actions button:first-child{
  background:#dbe6f5;
  color:#1f4f96;
}

.close-modal-btn{
  width:78px;
  height:36px;
  border:1px solid #9aa3af;
  background:#eef2f6;
  border-radius:6px;
  color:#444;
  cursor:pointer;
}

/* Responsive */
@media(max-width:991px){
  .job-modal-body{
    grid-template-columns:1fr;
    gap:30px;
  }

  .job-header-row{
    flex-direction:column;
  }

  .apply-now-btn{
    min-width:140px;
  }
}

@media(max-width:575px){
  .job-modal-overlay{
    padding:12px;
  }

  .job-modal-body{
    padding:22px;
  }

  .job-detail-left h2{
    font-size:24px;
  }

  .form-grid{
    grid-template-columns:1fr;
    gap:0;
  }

  .job-apply-card{
    padding:22px;
  }

  .job-modal-footer{
    padding:0 18px;
  }
}

.verify-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.68);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:10000;
}

.verify-modal-overlay.active{
  display:flex;
}

.verify-modal{
  width:100%;
  max-width:445px;
  background:#fff;
  border-radius:10px;
  padding:40px 40px 38px;
  box-shadow:0 25px 70px rgba(0,0,0,.35);
  animation:verifyPopup .25s ease;
}

@keyframes verifyPopup{
  from{
    opacity:0;
    transform:translateY(18px) scale(.96);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.verify-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#111827;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
}

.verify-modal h3{
  text-align:center;
  color:#222;
  font-size:18px;
  font-weight:500;
  margin:0 0 8px;
}

.verify-subtitle{
  text-align:center;
  color:#45484f;
  font-size:16px;
  line-height:1.45;
  max-width:320px;
  margin:0 auto 24px;
}

.verify-form-group{
  margin-bottom:28px;
}

.verify-form-group label{
  display:block;
  color:#444;
  font-size:16px;
  font-weight:500;
  text-transform:uppercase;
  margin-bottom:10px;
}

.verify-input-wrap{
  position:relative;
}

.verify-input-wrap svg{
  position:absolute;
  left:15px;
  top:50%;
  transform:translateY(-50%);
  color:#747b86;
}

.verify-input-wrap input{
  width:100%;
  height:56px;
  border:1px solid #cfd4dc;
  border-radius:6px;
  padding:0 16px 0 42px;
  font-size:16px;
  color:#333;
  outline:none;
  font-family:inherit;
}

.verify-input-wrap input::placeholder{
  color:#7f8794;
}

.verify-input-wrap input:focus{
  border-color:#1f4f96;
  box-shadow:0 0 0 3px rgba(31,79,150,.12);
}

.verify-help{
  color:#777b83;
  font-size:16px;
  line-height:1.45;
  margin:10px 0 0;
}

.verify-submit-btn{
  width:100%;
  height:55px;
  border:none;
  border-radius:7px;
  background:#ff6b1a;
  color:#fff;
  font-size:16px;
  font-weight:500;
  font-family:inherit;
  cursor:pointer;
  margin-bottom:16px;
  transition:.25s ease;
}

.verify-submit-btn:hover{
  background:#f05f10;
  transform:translateY(-1px);
}

.verify-submit-btn span{
  margin-left:5px;
  font-size:20px;
  line-height:1;
}

.verify-cancel-btn{
  width:100%;
  height:56px;
  border:1px solid #c6ccd4;
  border-radius:7px;
  background:#fff;
  color:#45484f;
  font-size:16px;
  font-weight:500;
  font-family:inherit;
  cursor:pointer;
  transition:.25s ease;
}

.verify-cancel-btn:hover{
  background:#f5f6f8;
}

.verify-secure{
  border-top:1px solid #e3e6eb;
  margin-top:24px;
  padding-top:13px;
  color:#7b7f87;
  font-size:16px;
  line-height:1.45;
  display:flex;
  align-items:center;
  gap:8px;
}

.verify-secure svg{
  flex:0 0 auto;
  color:#7b7f87;
}

/* Mobile */
@media(max-width:575px){
  .verify-modal{
    padding:32px 22px;
    max-width:100%;
  }

  .verify-subtitle,
  .verify-help,
  .verify-secure{
    font-size:14px;
  }

  .verify-form-group label{
    font-size:14px;
  }

  .verify-input-wrap input,
  .verify-submit-btn,
  .verify-cancel-btn{
    height:52px;
    font-size:15px;
  }
}

.job-alert-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:10000;
}

.job-alert-overlay.active{
  display:flex;
}

.job-alert-modal{
  position:relative;
  width:100%;
  max-width:690px;
  background:#fff;
  border-radius:10px;
  padding:42px 40px 56px;
  box-shadow:0 26px 80px rgba(0,0,0,.28);
  animation:jobAlertPopup .25s ease;
}

@keyframes jobAlertPopup{
  from{
    opacity:0;
    transform:translateY(18px) scale(.96);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.job-alert-close{
  position:absolute;
  top:14px;
  right:18px;
  width:34px;
  height:34px;
  border:none;
  background:transparent;
  color:#555;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.job-alert-close:hover{
  color:#ff6b1a;
}

.job-alert-modal h3{
  font-size:16px;
  font-weight:500;
  color:#111;
  margin:0 0 34px;
}

.job-alert-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px 24px;
}

.job-alert-group label{
  display:block;
  font-size:16px;
  font-weight:400;
  color:#4b4f58;
  margin-bottom:10px;
}

.job-alert-group input,
.job-alert-group select{
  width:100%;
  height:48px;
  border:1px solid #d9e1ea;
  border-radius:7px;
  background:#fff;
  color:#4b4f58;
  padding:0 16px;
  font-size:15px;
  font-family:inherit;
  outline:none;
  transition:.25s ease;
}

.job-alert-group input:focus,
.job-alert-group select:focus{
  border-color:#1f4f96;
  box-shadow:0 0 0 3px rgba(31,79,150,.1);
}

.job-alert-group select{
  cursor:pointer;
  appearance:auto;
}

.job-alert-check{
  display:grid;
  grid-template-columns:18px 1fr;
  gap:18px;
  align-items:flex-start;
  margin:38px 20px 38px 24px;
  color:#4b4f58;
  font-size:16px;
  line-height:1.45;
  cursor:pointer;
}

.job-alert-check input{
  width:16px;
  height:16px;
  margin-top:4px;
  cursor:pointer;
  accent-color:#1f4f96;
}

.job-alert-check a{
  color:#123b86;
  font-weight:700;
  text-decoration:none;
}

.job-alert-submit{
  width:100%;
  height:56px;
  border:none;
  border-radius:7px;
  background:#ff6b1a;
  color:#fff;
  font-size:16px;
  font-weight:500;
  font-family:inherit;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(255,107,26,.2);
  transition:.25s ease;
}

.job-alert-submit:hover{
  background:#f05f10;
  transform:translateY(-1px);
}

/* Tablet */
@media(max-width:768px){
  .job-alert-modal{
    max-width:620px;
    padding:36px 28px 42px;
  }

  .job-alert-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .job-alert-check{
    margin:28px 0;
  }
}

/* Mobile */
@media(max-width:575px){
  .job-alert-overlay{
    padding:14px;
  }

  .job-alert-modal{
    padding:34px 20px 34px;
    max-height:90vh;
    overflow-y:auto;
  }

  .job-alert-modal h3{
    margin-bottom:24px;
  }

  .job-alert-group label,
  .job-alert-check{
    font-size:14px;
  }

  .job-alert-group input,
  .job-alert-group select{
    height:46px;
    font-size:14px;
  }

  .job-alert-submit{
    height:50px;
    font-size:15px;
  }
}

/*JOB ALERT SUCCESS*/

.success-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:11000;
}

.success-modal-overlay.active{
  display:flex;
}

.success-modal{
  width:100%;
  max-width:420px;
  background:#fff;
  border-radius:10px;
  padding:32px 32px 32px;
  text-align:center;
  box-shadow:0 28px 80px rgba(0,0,0,.32);
  animation:successPopup .25s ease;
}

@keyframes successPopup{
  from{
    opacity:0;
    transform:translateY(18px) scale(.95);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.success-icon-wrap{
  width:80px;
  height:80px;
  border-radius:50%;
  background:#eafaf1;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
}

.success-icon{
  width:50px;
  height:50px;
  border-radius:50%;
  background:#18a957;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.success-modal h3{
  font-size:26px;
  font-weight:800;
  color:#181818;
  margin:0 0 14px;
}

.success-modal p{
  color:#4b4f58;
  font-size:16px;
  line-height:1.5;
  max-width:340px;
  margin:0 auto 34px;
}

.success-modal p strong{
  color:#3c3f45;
  font-weight:800;
}

.success-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  margin-bottom:16px;
}

.success-dots span{
  display:block;
  height:4px;
  border-radius:20px;
  background:#ffd4bd;
}

.success-dots span:nth-child(1),
.success-dots span:nth-child(3){
  width:48px;
}

.success-dots span:nth-child(2){
  width:16px;
  background:#ff9c63;
}

.success-close-btn{
  width:100%;
  height:56px;
  border:none;
  border-radius:7px;
  background:#ff6b1a;
  color:#fff;
  font-size:16px;
  font-weight:500;
  font-family:inherit;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(255,107,26,.24);
  transition:.25s ease;
}

.success-close-btn:hover{
  background:#f05f10;
  transform:translateY(-1px);
}

/* Mobile */
@media(max-width:575px){
  .success-modal{
    max-width:100%;
    padding:28px 22px;
  }

  .success-modal h3{
    font-size:24px;
  }

  .success-modal p{
    font-size:14px;
  }

  .success-close-btn{
    height:52px;
  }
}

.review-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  display:none;
  align-items:center;
  justify-content:center;
  padding:0;
  z-index:12000;
}

.review-modal-overlay.active{
  display:flex;
}

.review-modal{
  width:100%;
  max-width:890px;
  max-height:94vh;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 28px 80px rgba(0,0,0,.35);
  animation:reviewPopup .25s ease;
}

@keyframes reviewPopup{
  from{
    opacity:0;
    transform:translateY(16px) scale(.97);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* Header */
.review-modal-header{
  padding:26px 36px;
  border-bottom:1px solid #ccd2db;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:25px;
}

.review-modal-header h2{
  font-size:25px;
  font-weight:800;
  color:#090909;
  margin:0 0 8px;
}

.review-job-meta{
  display:flex;
  align-items:center;
  gap:18px;
  color:#444850;
  font-size:16px;
}

.review-job-meta span{
  display:inline-flex;
  align-items:center;
  gap:4px;
}

.review-steps{
  display:flex;
  align-items:center;
  gap:8px;
  color:#7a7d84;
  font-size:16px;
  white-space:nowrap;
  padding-top:16px;
}

.review-steps .done{
  width:20px;
  height:20px;
  border-radius:50%;
  background:#16a34a;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800;
}

.review-steps .active-step{
  width:20px;
  height:20px;
  border-radius:50%;
  background:#000;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:800;
}

.review-steps .step-num{
  width:20px;
  height:20px;
  border-radius:50%;
  border:1px solid #a3a6ad;
  color:#737780;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

/* Body */
.review-modal-body{
  padding:24px 36px;
  max-height:calc(94vh - 190px);
  overflow-y:auto;
}

.review-section-card{
  border:1px solid #c8ced8;
  border-radius:11px;
  padding:25px;
  margin-bottom:24px;
  background:#fff;
}

.review-section-card h3{
  font-size:22px;
  font-weight:800;
  color:#080808;
  margin:0 0 22px;
}

.review-info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px 90px;
}

.review-info-grid label,
.salary-box label,
.cover-box label{
  display:block;
  font-size:12px;
  color:#3f434b;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:6px;
}

.review-info-grid p{
  font-size:16px;
  color:#1f242b;
  margin:0;
}

.orange-text{
  color:#b84b00 !important;
}

/* Resume */
.resume-box{
  border:1px dashed #c7cdd7;
  background:#f4f6f9;
  border-radius:7px;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.resume-left{
  display:flex;
  align-items:center;
  gap:16px;
}

.pdf-icon{
  width:48px;
  height:48px;
  border:1px solid #c7ccd5;
  border-radius:4px;
  background:#fff;
  color:#ef233c;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  font-weight:800;
}

.resume-left p{
  font-size:16px;
  margin:0 0 2px;
  color:#1e2228;
}

.resume-left span{
  font-size:13px;
  color:#17191d;
}

.resume-actions{
  display:flex;
  align-items:center;
  gap:22px;
}

.resume-actions button{
  border:none;
  background:transparent;
  color:#151515;
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-size:16px;
  cursor:pointer;
}

/* Salary */
.salary-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.salary-box{
  background:#f1f3f6;
  border-radius:7px;
  padding:16px;
}

.salary-box p{
  margin:0;
  font-size:16px;
  color:#171b21;
}

/* Cover */
.cover-box{
  background:#f1f3f6;
  border-radius:7px;
  padding:16px;
}

.cover-box p{
  color:#1f242b;
  font-size:16px;
  line-height:1.6;
  margin:0;
}

.review-agree-text{
  color:#454850;
  font-size:15px;
  margin:20px 0;
}

.review-warning{
  border:1px solid #ffc8c8;
  background:#fff3f1;
  color:#b30000;
  border-radius:7px;
  padding:16px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:700;
}

/* Footer */
.review-modal-footer{
  border-top:1px solid #ccd2db;
  padding:20px 36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
}

.review-footer-actions{
  display:flex;
  align-items:center;
  gap:16px;
}

.review-cancel-btn{
  border:none;
  background:transparent;
  color:#111;
  font-size:16px;
  cursor:pointer;
}

.review-edit-btn{
  height:56px;
  padding:0 28px;
  border:1px solid #111;
  background:#fff;
  color:#111;
  border-radius:7px;
  font-size:16px;
  cursor:pointer;
}

.review-submit-btn{
  height:56px;
  padding:0 34px;
  border:none;
  background:#ff6b1a;
  color:#fff;
  border-radius:7px;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(255,107,26,.22);
}

.review-submit-btn:hover{
  background:#f05f10;
}

/* Responsive */
@media(max-width:768px){
  .review-modal{
    max-height:100vh;
    border-radius:0;
  }

  .review-modal-header{
    flex-direction:column;
    padding:22px;
  }

  .review-steps{
    padding-top:0;
    flex-wrap:wrap;
  }

  .review-modal-body{
    padding:20px;
    max-height:calc(100vh - 220px);
  }

  .review-info-grid,
  .salary-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .resume-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .review-modal-footer{
    padding:16px 20px;
    flex-direction:column;
    align-items:stretch;
    gap:14px;
  }

  .review-footer-actions{
    flex-direction:column;
    gap:12px;
  }

  .review-edit-btn,
  .review-submit-btn{
    width:100%;
  }

  .review-cancel-btn{
    width:100%;
    height:44px;
  }
}

.already-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:13000;
}

.already-modal-overlay.active{
  display:flex;
}

.already-modal{
  width:100%;
  max-width:510px;
  background:#fff;
  border-radius:10px;
  padding:40px 40px;
  text-align:center;
  box-shadow:0 28px 80px rgba(0,0,0,.35);
  animation:alreadyPopup .25s ease;
}

@keyframes alreadyPopup{
  from{
    opacity:0;
    transform:translateY(16px) scale(.96);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.already-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#f0f1f3;
  color:#111827;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.already-modal h3{
  font-size:26px;
  font-weight:800;
  color:#191919;
  margin:0 0 12px;
}

.already-message{
  max-width:410px;
  margin:0 auto 18px;
  color:#444850;
  font-size:17px;
  line-height:1.55;
}

.already-note{
  color:#7a7d84;
  font-size:15px;
  margin:0 0 38px;
}

.already-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.already-status-btn{
  min-height:64px;
  border:none;
  border-radius:7px;
  background:#ff6b1a;
  color:#fff;
  font-size:16px;
  font-weight:500;
  font-family:inherit;
  cursor:pointer;
  padding:0 20px;
  line-height:1.35;
  box-shadow:0 10px 22px rgba(255,107,26,.22);
  transition:.25s ease;
}

.already-status-btn:hover{
  background:#f05f10;
  transform:translateY(-1px);
}

.already-close-btn{
  min-height:64px;
  border:1px solid #9ca3af;
  border-radius:7px;
  background:#fff;
  color:#191919;
  font-size:16px;
  font-weight:500;
  font-family:inherit;
  cursor:pointer;
  transition:.25s ease;
}

.already-close-btn:hover{
  background:#f5f6f8;
}

/* Mobile */
@media(max-width:575px){
  .already-modal{
    max-width:100%;
    padding:34px 22px;
  }

  .already-modal h3{
    font-size:22px;
  }

  .already-message{
    font-size:15px;
  }

  .already-actions{
    grid-template-columns:1fr;
  }

  .already-status-btn,
  .already-close-btn{
    min-height:54px;
  }
}