
    .career-header-top {
        position: relative;
        overflow: hidden;
    }

    .circle {
        position: absolute;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        /* Semi-transparent white */
    }

    .circle-1 {
        width: 120px;
        height: 120px;
        top: 5%;
        left: 10%;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
        top: 20%;
        right: 5%;
    }

    .circle-3 {
        width: 80px;
        height: 80px;
        top: 50%;
        left: 40%;
    }

    .circle-4 {
        width: 100px;
        height: 100px;
        bottom: 15%;
        left: 20%;
    }

    .circle-5 {
        width: 90px;
        height: 90px;
        bottom: 25%;
        right: 15%;
    }

    .circle-6 {
        width: 130px;
        height: 130px;
        top: 70%;
        left: 5%;
    }

    .circle-7 {
        width: 110px;
        height: 110px;
        top: 30%;
        left: 60%;
    }

    .circle-8 {
        width: 140px;
        height: 140px;
        bottom: 5%;
        right: 25%;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }



    button {
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        border: none;
        background-color: #4CAF50;
        color: white;
        border-radius: 5px;
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0s 0.5s;
    }

    .modal.show {
        display: block;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s ease, visibility 0s 0s;
    }

    .modal-content {
        background-color: white;
        margin: 5% auto;
        /* Adjusted margin to center the modal */
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 500px;
        position: relative;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }


    .modal.show .modal-content {
        opacity: 1;
        transform: translateY(0);
    }


    .close {
        color: #aaa;
        font-size: 28px;
        font-weight: bold;
        position: absolute;
        top: 10px;
        right: 20px;
        cursor: pointer;
    }

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    #loader {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999;
    }

    /* The modal */
    #viewModal {
        display: none;
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0s 0.5s;
    }

    #viewModal.show {
        display: block;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s ease, visibility 0s 0s;
    }

    #viewModal .modal-content {
        background-color: white;
        margin: 5% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 500px;
        position: relative;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    #viewModal.show .modal-content {
        opacity: 1;
        transform: translateY(0);
    }
  