
/* :root {
    --dark: #04200f;
    --dark2: #072b14;
    --accent: #38f080;
    --gold: #c9a020;
    --white: #f0f5f1;
    --muted: rgba(240, 245, 241, 0.65);
    --nav-h: 76px;
    --red: #e05252;
  } */

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    margin-top: 100px;
  }

  .button1 {
    background-color: transparent;
    outline: none;
    width: 200px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    cursor: pointer;
    transition: all 0.2s;

        background: rgba(56, 240, 128, 0.12);
        color: var(--accent);
        border: 1px solid rgba(56, 240, 128, 0.2);
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 600;

  }

.card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(56, 240, 128, 0.1);
        border-radius: 8px;
        padding: 70px;
        transition:
            border-color 0.25s,
            background 0.25s,
            transform 0.25s;
        margin: 50px 250px;

    }

    .card-title {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .card-inner {
        display: flex;
        flex-direction: column;
        gap: 12px;

        h1 {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            text-decoration: underline;
            text-decoration-color: var(--accent);
            text-underline-offset: 4px;
            margin: 10px 0 0 0;
            font-family: sans-serif;

          }
        p {
            color: var(--muted);
            line-height: 1.6;
        }

        ul {
            list-style: disc;
            margin: 0 0 0 20px;
            padding: 0 0 0 20px;
            color: var(--muted);
            line-height: 1.6;

        }
    }

    @media (max-width: 960px) {
      .card {
        margin: 50px;
      }
    }

    .job-detail{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(56,240,128,.08);
    border-radius:10px;
    padding:30px;
    color:var(--white);
    font-family:"DM Sans",sans-serif;
    /* max-width:800px; */
    }


    /* header */

    .job-header{
    margin-bottom:25px;
    }

    .job-header h3{
    font-weight:600;
    margin-bottom:6px;
    }

    .job-meta{
    font-size:13px;
    color:var(--muted);
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    }


    /* sections */

    .job-section{
    margin-bottom:22px;
    }

    .job-section h1,
    .job-section h2,
    .job-section h3,
    .job-section h4,
    .job-section h5,
    .job-section h6{
    font-size:16px;
    margin-bottom:10px;
    font-weight:600;
    }


    /* paragraphs */

    .job-section p{
    font-size:20px;
    color:var(--muted);
    line-height:2.5;
    }


    /* lists */

    .job-section ul{
    padding-left:18px;
    }

    .job-section li{
    font-size:18px;
    line-height:1.4;
    margin-bottom:12px;
    color:var(--muted);
    }


    /* apply button */

    .job-action{
    margin-top:25px;
    }

    .btn-apply{
    background:var(--accent);
    border:none;
    padding:10px 22px;
    border-radius:6px;
    font-weight:600;
    color:var(--dark);
    cursor:pointer;
    transition:.25s;
    }

    .btn-apply:hover{
    background:#2bd96f;
    transform:translateY(-1px);
    box-shadow:0 6px 14px rgba(56,240,128,.25);
    }
