 :root{
      --blue:#004a99;
      --red:#e31b23;
      --text:#0f172a;
      --muted:#6b7280;
      --line:rgba(15, 23, 42, 0.12);
      --soft:#f6f7fb;
      --card:#ffffff;
      --shadow: 0 18px 55px rgba(25, 10, 50, 0.10);
      --radius: 18px;
    }

    *{ box-sizing:border-box; }
    html,body{ margin:0; padding:0; }
    body{
      font-family:'Poppins', sans-serif;
      color: var(--text);
      background:#fff;
    }
    img{ max-width:100%; height:auto; display:block; }

    /* Simple helpers */
    .color-blue{ color: var(--blue); }
    .bg-blue-dark{ background: var(--blue); }
    .color-red{ color: var(--red); }
    .bg-red-main{ background: var(--red); }

    /* Header absolute logo (desktop) */
    .logo-container{
      position:absolute;
      top: 25px;
      left: 1.25rem;
      z-index: 60;
      
    }

    /* Dropdown (hover) */
    .nav-wrap{ position: relative; }
    .dropdown-menu{
      position: absolute;
      top: calc(100% + 12px);
      left: 0;
      min-width: 230px;
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 12px;
      box-shadow: 0 14px 30px rgba(0,0,0,0.12);
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all .2s ease;
      z-index: 9999;
    }
    .nav-wrap:hover .dropdown-menu{
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu a{
      display:block;
      padding: 10px 14px;
      font-size: 14px;
      color:#374151;
      text-decoration:none;
      white-space: nowrap;
    }
    .dropdown-menu a:hover{
      background: #fff1f2;
      color: var(--red);
    }

    /* HERO */
    .page-hero{
      position: relative;
      width: 100%;
      height: clamp(220px, 38vw, 420px);
      overflow: hidden;
    }
    .page-hero img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .page-hero::after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.45));
    }
    .hero-text{
      position:absolute;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
      z-index:2;
      text-align:center;
      padding: 0 16px;
    }
    .hero-text h1{
      color:#fff;
      font-weight: 800;
      letter-spacing: -0.5px;
      font-size: clamp(28px, 5vw, 56px);
      margin:0;
    }


    /* Mobile menu panel */
    .mobile-panel{
      position: fixed;
      top: 0; right: -100%;
      width: min(360px, 92vw);
      height: 100%;
      background: #fff;
      box-shadow: -12px 0 30px rgba(0,0,0,0.18);
      z-index: 99999;
      transition: right .25s ease;
      padding: 18px;
      overflow-y: auto;
    }
    .mobile-panel.open{ right: 0; }
    .backdrop{
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 99990;
      opacity: 0;
      visibility: hidden;
      transition: all .2s ease;
    }
    .backdrop.show{ opacity: 1; visibility: visible; }

    .mobile-link{
      display:block;
      padding: 12px 10px;
      border-radius: 10px;
      font-weight: 700;
      color:#0f172a;
      text-decoration:none;
    }
    .mobile-link:hover{ background:#f3f4f6; }
    details.mobile-dd{
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 12px;
      padding: 6px 8px;
      margin: 10px 0;
    }
    details.mobile-dd summary{
      cursor: pointer;
      font-weight: 800;
      padding: 10px;
      list-style: none;
    }
    details.mobile-dd summary::-webkit-details-marker{ display:none; }
    .mobile-sub a{
      display:block;
      padding: 10px 10px;
      margin: 2px 0;
      border-radius: 10px;
      text-decoration:none;
      color:#374151;
      font-weight: 600;
      font-size: 14px;
    }
    .mobile-sub a:hover{ background:#fff1f2; color: var(--red); }


    /* HERO */
    .page-hero{
      position: relative;
      width: 100%;
      height: clamp(220px, 38vw, 420px);
      overflow: hidden;
    }
    .page-hero img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .page-hero::after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.45));
    }
    .hero-text{
      position:absolute;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
      z-index:2;
      text-align:center;
      padding: 0 16px;
    }
    .hero-text h1{
      color:#fff;
      font-weight: 800;
      letter-spacing: -0.5px;
      font-size: clamp(28px, 5vw, 56px);
      margin:0;
    }


    /* Footer */
    .footer{
      position:relative;
      background:#0b1220;
      color:#e5e7eb;
      margin-top: 40px;
    }
    .footer__bgmark{
      position:absolute; inset:0;
      background:
        radial-gradient(circle at 20% 20%, rgba(0,74,153,.25), transparent 45%),
        radial-gradient(circle at 80% 40%, rgba(227,27,35,.18), transparent 45%);
      filter: blur(10px);
      opacity:.8;
      pointer-events:none;
    }
    .footer__container{
      position:relative;
      z-index:1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 54px 24px 26px;
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 26px;
    }
    @media (max-width: 1024px){
      .footer__container{ grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px){
      .footer__container{ grid-template-columns: 1fr; }
    }
    .footer__title{ font-weight: 900; font-size: 16px; margin: 0 0 14px; }
    .footer__list{ list-style:none; padding-left:0; margin:0; display:grid; gap: 10px; }
    .footer__link{ color:#cbd5e1; text-decoration:none; font-weight: 600; font-size: 14px; }
    .footer__link:hover{ color:#fff; text-decoration: underline; }
    .footer__text{ color:#cbd5e1; font-size: 14px; line-height: 1.8; margin: 0 0 10px; }
    .footer__block{ margin: 0 0 16px; }
    .footer__label{ font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color:#93c5fd; font-weight: 800; margin-bottom: 6px; }
    .footer__link--inline{ display:inline-block; margin: 6px 0; }

    .footer__social{ display:flex; gap: 10px; margin-top: 14px; }
    .social-btn{
      width: 42px; height: 42px;
      display:grid; place-items:center;
      border-radius: 14px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.10);
      color:#fff;
      transition: .18s ease;
      text-decoration:none;
    }
    .social-btn:hover{
      background: rgba(227,27,35,.22);
      border-color: rgba(227,27,35,.28);
      transform: translateY(-1px);
    }

    .footer__bottom{
      position:relative;
      z-index:1;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer__bottomInner{
      max-width: 1200px;
      margin: 0 auto;
      padding: 14px 24px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 10px;
      font-size: 13px;
      color:#cbd5e1;
      flex-wrap: wrap;
    }
    .footer__miniLinks{ display:flex; gap: 14px; }
    .footer__miniLink{ color:#cbd5e1; text-decoration:none; font-weight: 700; }
    .footer__miniLink:hover{ color:#fff; text-decoration: underline; }


     /* HERO */
    .page-hero{
      position: relative;
      width: 100%;
      height: clamp(220px, 38vw, 420px);
      overflow: hidden;
    }
    .page-hero img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .page-hero::after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.45));
    }
    .hero-text{
      position:absolute;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
      z-index:2;
      text-align:center;
      padding: 0 16px;
    }
    .hero-text h1{
      color:#fff;
      font-weight: 800;
      letter-spacing: -0.5px;
      font-size: clamp(28px, 5vw, 56px);
      margin:0;
    }



    /* ===== CLIENTS SECTION ===== */
.clients {
  padding: 60px 0;
  background: #f8fafc;
  overflow: hidden;
}

.clients-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 0 16px;
}

.clients h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 30px;
  color: #0f172a;
}

/* Slider */
.logo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 60px;
  animation: slide 20s linear infinite;
}

.logo {
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-width: 120px;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo-track {
    gap: 40px;
  }
  .logo img {
    max-width: 100px;
  }
}



/* =========================
   CAREERS PAGE STYLES
========================= */

:root{
  --brand:#004a99;
  --brand2:#e31b23;
  --text:#0f172a;
  --muted: rgba(15, 23, 42, .75);
  --border: rgba(15, 23, 42, .12);
  --bg:#ffffff;
  --soft:#f5f7fb;
  --shadow: 0 16px 40px rgba(2, 6, 23, .08);
  --radius: 18px;
  --radius2: 24px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:"Poppins", sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{ color:inherit; text-decoration:none; }
.container{ max-width:1200px; margin:0 auto; padding:0 16px; }

.section{ padding:70px 0; }
.section.soft{ background:var(--soft); }

.section-head{
  text-align:center;
  margin-bottom:26px;
}
.section-head.left{ text-align:left; }
.section-head h2{
  margin:0 0 8px;
  font-size:28px;
}
.section-head p{
  margin:0;
  color:var(--muted);
}



/* =========================
   MODERN CAREERS SECTIONS
========================= */

.modern-head .kicker{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,74,153,.10);
  color:var(--brand, #004a99);
  font-weight:800;
  font-size:12px;
  margin-bottom:10px;
}

/* WHY GRID + BENEFITS GRID */
.why-grid, .benefits-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.info-card{
  background:#fff;
  border:1px solid var(--border, rgba(15,23,42,.12));
  border-radius:22px;
  box-shadow: 0 18px 45px rgba(2,6,23,.08);
  padding:18px;
  transition:.25s ease;
  position:relative;
  overflow:hidden;
}
.info-card::before{
  content:"";
  position:absolute; inset:auto -80px -80px auto;
  width:180px; height:180px;
  background: radial-gradient(circle at 30% 30%, rgba(0,74,153,.18), transparent 60%);
  transform: rotate(20deg);
}
.info-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(2,6,23,.12);
}
.ic-top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.ic-icon{
  width:42px; height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,74,153,.10);
  color:var(--brand, #004a99);
  font-weight:900;
  flex:0 0 auto;
}
.info-card h3{ margin:0; }
.info-card p{ margin:0; color:var(--muted, rgba(15,23,42,.75)); }

/* JOBS - MODERN ACCORDION CARDS */
.jobs-grid-modern{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
}

.job-modern{
  background:#fff;
  border:1px solid var(--border, rgba(15,23,42,.12));
  border-radius:24px;
  box-shadow: 0 18px 50px rgba(2,6,23,.08);
  overflow:hidden;
  transition:.25s ease;
}
.job-modern:hover{ transform: translateY(-2px); }

.job-modern summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  position:relative;
}
.job-modern summary::-webkit-details-marker{ display:none; }

.job-modern summary::after{
  content:"▾";
  font-weight:900;
  opacity:.6;
  margin-left:10px;
  transition:.2s ease;
}
.job-modern[open] summary::after{ transform: rotate(180deg); }

.job-title h3{ margin:0; font-size:18px; }
.job-title .meta{ margin:6px 0 0; font-size:13px; color:var(--muted, rgba(15,23,42,.75)); }

.badge{
  font-size:12px;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid transparent;
  white-space:nowrap;
}
.badge-new{
  background: rgba(0,74,153,.10);
  border-color: rgba(0,74,153,.20);
  color: var(--brand, #004a99);
}
.badge-field{
  background: rgba(227,27,35,.10);
  border-color: rgba(227,27,35,.20);
  color:#e31b23;
}
.badge-flex{
  background: rgba(15,23,42,.06);
  border-color: rgba(15,23,42,.12);
  color: rgba(15,23,42,.75);
}

.job-modern .job-body{
  border-top:1px solid var(--border, rgba(15,23,42,.12));
  padding:16px 18px 18px;
}
.job-modern .job-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:12px;
}
.job-modern h4{ margin:0 0 8px; }
.job-modern ul{ margin:0; padding-left:18px; color:var(--muted, rgba(15,23,42,.75)); }

/* APPLY - MODERN */
.apply-grid-modern{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}

.note-card{
  background:#fff;
  border:1px solid var(--border, rgba(15,23,42,.12));
  border-radius:24px;
  box-shadow: 0 18px 45px rgba(2,6,23,.08);
  padding:18px;
}
.note-card h3{ margin:0 0 10px; }
.note-card ul{ margin:0; padding-left:18px; color:var(--muted, rgba(15,23,42,.75)); }

.apply-form-modern{
  background:#fff;
  border:1px solid var(--border, rgba(15,23,42,.12));
  border-radius:26px;
  box-shadow: 0 22px 70px rgba(2,6,23,.10);
  padding:18px;
}

.apply-form-modern .form-row{ display:grid; gap:8px; margin-bottom:12px; }
.apply-form-modern label{ font-weight:800; font-size:14px; }

.apply-form-modern input,
.apply-form-modern select,
.apply-form-modern textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border, rgba(15,23,42,.12));
  outline:none;
  font-family:inherit;
  font-size:14px;
  background:#fff;
}
.apply-form-modern input:focus,
.apply-form-modern select:focus,
.apply-form-modern textarea:focus{
  border-color: rgba(0,74,153,.55);
  box-shadow:0 0 0 4px rgba(0,74,153,.10);
}

.apply-form-modern .split{
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.file-modern{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border:1px dashed rgba(15,23,42,.25);
  border-radius:14px;
  background:#fbfcff;
}
.file-modern input{ width:auto; }
#fileName{ color:var(--muted, rgba(15,23,42,.75)); font-size:13px; }

/* RESPONSIVE */
@media (max-width: 950px){
  .why-grid, .benefits-grid{ grid-template-columns:1fr; }
  .jobs-grid-modern{ grid-template-columns:1fr; }
  .job-modern .job-cols{ grid-template-columns:1fr; }
  .apply-grid-modern{ grid-template-columns:1fr; }
  .apply-form-modern .split{ grid-template-columns:1fr; }
}
