:root {
  --bg: #0b1020;
  --bg-soft: #0f1530;
  --card: #121936;
  --text: #e8ecff;
  --muted: #9aa3c7;
  --brand: #5b7cff;
  --brand-2: #6de5ff;
  --accent: #24d6a6;
  --danger: #ff6b6b;
  --ring: rgba(107, 124, 255, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg), #0a0f1b 60%);
}
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: var(--text);
  line-height: 1.55;
}

/* layout */
.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}
.section {
  padding: 25px 0;
}
.grid {
  display: grid;
  gap: 20px;
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: linear-gradient(
    180deg,
    rgba(15, 21, 48, 0.85),
    rgba(15, 21, 48, 0.65)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.logo {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background-color: #131b3c;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.logo img {
  width: 35px;
  height: 35px;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
}
.nav a:hover {
  opacity: 1;
}
.menu {
  display: flex;
  gap: 22px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  background: linear-gradient(180deg, #171f44, #121a3b);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-color: transparent;
  color: #081127;
  font-weight: 700;
  box-shadow: 0 10px 25px var(--ring);
}
.btn-ghost {
  background: transparent;
}
.spacer {
  height: 10px;
}

/* mobile menu (checkbox hack) */
#nav-toggle {
  display: none;
}
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .menu {
    position: fixed;
    inset-inline: 4vw;
    top: 64px;
    display: grid;
    gap: 10px;
    padding: 14px;
    background: var(--bg-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: 0.2s;
    box-shadow: var(--shadow);
  }
  #nav-toggle:checked ~ .menu {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* hero */
.hero {
  padding: 40px 0 10px;
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  margin: 0;
}
.sub {
  color: var(--muted);
  font-size: clamp(14px, 2vw, 18px);
}
.hero-card {
  display: grid;
  gap: 22px;
  background: linear-gradient(180deg, var(--bg-soft), #0c1330);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(107, 124, 255, 0.12);
  color: #cfd6ff;
  border: 1px solid rgba(107, 124, 255, 0.25);
}

/* cards */
.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0;
  font-size: 18px;
}
.muted {
  color: var(--muted);
}
.icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(91, 124, 255, 0.25),
    rgba(36, 214, 166, 0.25)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* cta strip */
.cta {
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(36, 214, 166, 0.16),
    rgba(91, 124, 255, 0.16)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* footer */
footer {
  background: #0a1025;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .footer-grid h4{
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .link{
    padding: 0 0 !important;
  }

}
.footer h4 {
  margin: 0.2rem 0 0.6rem 0;
}
.link {
  display: block;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
}
.link:hover {
  color: var(--text);
}
.copyright {
  color: var(--muted);
  font-size: 13px;
  padding: 15px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 12px;
}

/* forms */
.input,
textarea {
  width: 100%;
  padding: 12px 14px;
  background: #0b1230;
  color: var(--text);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: none;
}
.input:focus,
textarea:focus {
  box-shadow: 0 0 0 4px var(--ring);
  border-color: transparent;
}
textarea {
  min-height: 120px;
  resize: vertical;
}

/* privacy/about sections */
.prose {
  color: var(--muted);
}
.prose p {
  margin: 0.5rem 0;
}
.tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #0b1436;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cfd6ff;
  font-size: 12px;
}

a{
    text-decoration: none;
}

.btn_color_222{
    color: var(--text);
}

.cp_link{
    color: var(--text);
    text-decoration: underline;
}


.job_image_item{
    width: 100%; 
    border-radius: 8px; 
    margin-bottom:15px; 
    object-fit: cover;
}

.job_info_aa{
    color: var(--muted);
    margin-top: 0px;
    margin-bottom: 0px;
}

.job_container{
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 20px;
    box-shadow: var(--shadow);
}

.job_title{
    margin-top:0px; 
    margin-bottom:10px;
}

.job_des_aa{
    color: var(--muted);
    margin-top: 20px;
    margin-bottom: 20px;
}


.m404_main{
    height: 200px;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}


.m404_main h3{
    margin-top: 0px;
    margin-bottom: 10px;
}


.m404_main p{
    margin-top: 0px;
    margin-bottom: 0px;
}

.job_des_aa a{
    color: #fff;
}

.job_des_aa img{
   width: 100%;
   height: fit-content;
}


    .read_more_container {
        margin-top: 40px;
    }
    .read_more_title {
        font-size: 18px;
        margin-bottom: 20px;
        color: #fff;
    }
    .read_more_item_row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-size: 15px;
    }
    .read_more_item {
        color: #007bff;
        font-weight: bold;
        transition: color 0.3s ease;
        text-decoration: underline;
    }
    .read_more_item:hover {
        text-decoration: underline;
    }

