html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 0;
}

/****************************************** Theme ******************************************/
:root {
    --primary-colour: rgba(49, 120, 179, 1); /* Blue */
    --secondary-colour: rgba(44, 44, 44, 1); /* Grey */
    --tertiary-colour: rgba(226, 225, 225, 1); /* Light Grey */
    --primary-font: "Montserrat", sans-serif;
}

h1 {
    font-family: var(--primary-font);
}

h4 {
    font-family: var(--primary-font);
}

p {
    font-family: var(--primary-font);
    margin-bottom: 0;
}
/*************************** Layout *************************/
.nav_btn {
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-login {
    border: 2px solid rgba(44, 44, 44, 1);
    background-color: transparent;
    color: rgba(44, 44, 44, 1);
}

.btn-login:hover {
    background-color: rgba(44, 44, 44, 1);
    color: white;
}

.cancel_btn {
    border-color: var(--secondary-colour);
    background-color: var(--secondary-colour);
    color: white;
    width: 100px;
    text-decoration: none;
    align-content: center;
    text-align: center;
    border-radius: .25rem;
    transition: ease;
}

.cancel_btn:hover{
    text-decoration: none;
    background-color: #222222;
    color: white;
}

.delete_btn {
    border-color: red;
    background-color: red;
    color: white;
    width: 100px;
    text-decoration: none;
    align-content: center;
    text-align: center;
    border-radius: .25rem;
    transition: ease;
}

.delete_btn:hover {
    text-decoration: none;
    background-color: #d90000;
    color: white;
}

/* Register button: blue background, white text */
.btn-register {
    background-color: #0d6efd; /* Bootstrap primary blue */
    color: white;
    border: 2px solid #0d6efd;
}

.btn-register:hover {
    background-color: #0b5ed7; /* Slightly darker blue on hover */
    border-color: #0b5ed7;
    color: white;
}

.footer {
    display: flex;
    justify-content: center;
    height: 300px;
    width: 100%;
    background-color: rgba(44, 44, 44, 1);
    padding: 50px;
}

.footer_container {
    display: flex;
    width: 1000px;
    justify-content: space-between;
}

.footer_object {
    display: flex;
    flex-direction: column;
    width: 200px;
    height: fit-content;
    word-wrap: break-word;
}

.user_profile:hover .profile_text {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

.icon_container {
    display: flex;
    gap: 5px;
}

.pill {
    width: fit-content;
    border-radius: 20px;
    background-color: var(--primary-colour);
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    height: 27px;
    transition: all 0.2s ease;
}

.pill:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.icon {
    width: 20px;
    height: 20px;
    margin-top: 1px;
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-colour) !important;
}

.dropdown-item:hover {
    cursor: pointer;
}

.custom-dropdown {
    width: 100px;
    min-width: unset;
}

.dashboard_container {
    display: flex;
    width: 100%;
    padding-top: 0;
    flex-direction: row;
    height: 100vh;
    gap: 30px;
    padding-right: 30px;
    background-color: var(--tertiary-colour);
}

.side_nav {
    display: flex;
    flex-direction: column;
    width: 200px;
    background-color: white;
    border: solid 1px rgb(176 176 176);
    height: 100%;
    border-top: none;
    padding: 10px;
    padding-left: 5px;
}

.side_nav_btn {
    display: flex;
    gap: 10px;
    width: 180px;
    color: var(--secondary-colour);
    padding-left: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    transition-duration: 0.1s;
}

.side_nav_btn:hover {
    color: white;
    background-color: var(--primary-colour);
    border-radius: 10px;
    cursor: pointer;
}

.main_nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
}

.main_nav_object {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: white;
    border: solid 1px rgb(176 176 176);
    border-radius: 5px;
    padding: 20px;
}

/******* Notification *******/
.custom_alert_success {
    background-color: white;
    color: rgb(1 222 1);
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 8px;
    padding: 15px 20px;
    font-family: var(--primary-font);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-color: rgb(1 222 1);
    border-width: medium;
    text-align: center;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: 30%;
}

.custom_alert_error {
    background-color: white;
    color: red;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 8px;
    padding: 15px 20px;
    font-family: var(--primary-font);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-color: red;
    border-width: medium;
    text-align: center;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: 30%;
}

.custom_alert_info {
    background-color: white;
    color: var(--tertiary-colour);
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 8px;
    padding: 15px 20px;
    font-family: var(--primary-font);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-color: var(--tertiary-colour);
    border-width: medium;
    text-align: center;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: 30%;
}

.fade2 {
    animation-name: fade2;
    animation-duration: 1.5s;
}

@keyframes fade2 {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/*************************** Home Page *************************/
.heading {
    display: flex;
    position: relative;
    justify-content: center;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.loggedin_heading {
    display: flex;
    justify-content: center;
    height: 500px;
    width: 100%;
    background-size: cover;
    background-position-y: center;
    background-image: url('/images/handshake 2.jpg');
}

.background_video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.4);
}

.heading_content {
    display: flex;
    flex-direction: column;
    width: 70%;
    gap: 20px;
    padding-top: 140px;
    position: relative;
    z-index: 1;
}

.main_container {
    display: flex;
    width: 100%;
    height: fit-content;
    padding-top: 100px;
    flex-direction: column;
    align-items: center;
    background-color: var(--tertiary-colour);
    padding-bottom: 50px;
}

.main_box {
    display: flex;
    width: 80%;
    height: fit-content;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

/***************** Job Card *******************/
.card {
    width: 320px;
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05)
}

.card_header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .logo img {
        width: 65%;
        height: 65%;
        object-fit: contain;
    }

.header_content {
    flex: 1;
    max-width: 100%;
}

.company_name {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.job_title {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

.job_meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.job_type {
    padding: 4px 12px;
    background: rgb(218 220 221);
    color: #475569;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 100px;
}

.post_time {
    color: #64748b;
    font-size: 0.875rem;
}

.action_buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.button {
    flex: 1;
    padding: 12px 24px;
    border-radius: 10px;
    width: 150px;
    height: 40px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.primary_button {
    background: #3b82f6;
    color: #fff;
    border: none;
}

    .primary_button:hover {
        background: #2563eb;
        transform: translateY(-2px);
    }

.secondary_button {
    background: rgb(218 220 221);
    color: #1e293b;
    border: none;
}

    .secondary_button:hover {
        background: #bfbfbf;
        transform: translateY(-2px);
    }

.main_object {
    display: flex;
    background-color: white;
    height: fit-content;
    width: 250px;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main_object:hover {
    transform: scale(1.05)
}

.sub_container {
    background-color: var(--primary-colour);
    padding-top: 20px;
}

.sub_box {
    display: flex;
    width: 90%;
    height: fit-content;
    gap: 50px;
    justify-content: center;
}

.sub_object {
    display: flex;
    flex-direction: column;
    width: 20%;
    gap: 10px;
    height: fit-content;
    word-wrap: break-word;
    align-items: center;
}

.line-md--briefcase-check-filled {
    display: inline-block;
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cmask id='lineMdBriefcaseCheckFilled0'%3E%3Cg fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath fill='%23fff' fill-opacity='0' stroke-dasharray='64' stroke-dashoffset='64' d='M9 7h11c0.55 0 1 0.45 1 1v11c0 0.55 -0.45 1 -1 1h-16c-0.55 0 -1 -0.45 -1 -1v-11c0 -0.55 0.45 -1 1 -1Z'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='1.8s' dur='1s' values='0;1'/%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='1.2s' values='64;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='16' stroke-dashoffset='16' d='M9 7v-3c0 -0.55 0.45 -1 1 -1h4c0.55 0 1 0.45 1 1v3'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.4s' dur='0.4s' values='16;0'/%3E%3C/path%3E%3Cpath fill='%23000' fill-opacity='0' stroke='none' d='M19 13c3.31 0 6 2.69 6 6c0 3.31 -2.69 6 -6 6c-3.31 0 -6 -2.69 -6 -6c0 -3.31 2.69 -6 6 -6Z'%3E%3Cset fill='freeze' attributeName='fill-opacity' begin='2.8s' to='1'/%3E%3C/path%3E%3Cpath stroke-dasharray='10' stroke-dashoffset='10' d='M16 19l1.75 1.75l3.75 -3.75'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='2.8s' dur='0.4s' values='10;0'/%3E%3C/path%3E%3C/g%3E%3C/mask%3E%3Crect width='24' height='24' fill='%23000' mask='url(%23lineMdBriefcaseCheckFilled0)'/%3E%3C/svg%3E");
}

.slider {
    gap: 50px;
    display: flex;
    width: 900px;
    height: fit-content;
    justify-content: center;
}

.company_logo {
    font-size: 50px;
}


/*************************** Logged In Page *************************/
.search_container {
    display: flex;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(226, 225, 225, 0.85);
    align-items: center;
    padding-left: 20px;
}

.search_bar {
    background-color: transparent;
    border: none;
    width: 80%;
    padding-left: 10px;
}

.search_bar:focus {
    outline: none;
}

.sub_object_card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 15%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .sub_object_card:hover {
        cursor: pointer;
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .line-md--document-list-twotone {
        display: inline-block;
        width: 50px;
        height: 50px;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%232C2C2C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath stroke-dasharray='64' stroke-dashoffset='64' d='M13 3l6 6v12h-14v-18h8'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='1.2s' values='64;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='14' stroke-dashoffset='14' stroke-width='1' d='M12.5 3v5.5h6.5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.4s' dur='0.4s' values='14;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='6' stroke-dashoffset='6' d='M9 13h4'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.8s' dur='0.4s' values='6;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='8' stroke-dashoffset='8' d='M9 16h6'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='2.2s' dur='0.4s' values='8;0'/%3E%3C/path%3E%3C/g%3E%3Cpath fill='%232C2C2C' fill-opacity='0' d='M5 3H12.5V8.5H19V21H5V3Z'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='2.8s' dur='0.3s' values='0;0.3'/%3E%3C/path%3E%3C/svg%3E");
    }

.line-md--chevron-small-triple-up {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%232C2C2C' stroke-dasharray='10' stroke-dashoffset='10' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 14l-5 5M12 14l5 5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.6s' values='10;0'/%3E%3C/path%3E%3Cpath d='M12 9l-5 5M12 9l5 5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='0.6s' dur='0.6s' values='10;0'/%3E%3C/path%3E%3Cpath d='M12 4l-5 5M12 4l5 5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.2s' dur='0.6s' values='10;0'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.line-md--document-report-twotone {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%232C2C2C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath stroke-dasharray='64' stroke-dashoffset='64' d='M13 3l6 6v12h-14v-18h8'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='1.2s' values='64;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='14' stroke-dashoffset='14' stroke-width='1' d='M12.5 3v5.5h6.5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.4s' dur='0.4s' values='14;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='4' stroke-dashoffset='4' d='M9 17v-3'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='1.8s' dur='0.4s' values='4;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='6' stroke-dashoffset='6' d='M12 17v-4'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='2.2s' dur='0.4s' values='6;0'/%3E%3C/path%3E%3Cpath stroke-dasharray='6' stroke-dashoffset='6' d='M15 17v-5'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' begin='2.6s' dur='0.4s' values='6;0'/%3E%3C/path%3E%3C/g%3E%3Cpath fill='%232C2C2C' fill-opacity='0' d='M5 3H12.5V8.5H19V21H5V3Z'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='3.2s' dur='0.3s' values='0;0.3'/%3E%3C/path%3E%3C/svg%3E");
}

/***************** Sliding Animation ****************/

.container_slide {
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.container_slide.show {
     transform: translateY(0);
    opacity: 1;
}

.container_slide .sub_object {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.container_slide.show .sub_object:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.container_slide.show .sub_object:nth-child(2) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.container_slide.show .sub_object:nth-child(3) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}


/*************************** Register Page *************************/
.account_container {
    background-color: var(--tertiary-colour);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.account_box {
    position: relative;
    z-index: 2;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.auth_btn {
    margin-top: 20px;
    width: 200px;
    background-color: var(--primary-colour);
    color: white;
}

.auth_container {
    background-color: var(--tertiary-colour);
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    width: 100%;
    padding-bottom: 100px;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.auth_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/background 1.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(6px);
    z-index: 1;
}


/*************************** Create Profile Page *************************/
.create_profile_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    height: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.create_profile_container {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    width: 70%;
    gap: 50px;
}

.create_profile_object {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
}

.create_profile_object_alt {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.add_object {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 30px;
    flex-wrap: wrap;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    margin-top: 30px;
    align-items: center;
}

.profile_icon {
    width: 200px;
    height: 200px;
}

.profile_field {
    width: 35%
}

.line {
    border: none;
    height: 1px;
    background-color: rgb(142, 142, 142);
    opacity: 0.5;
    margin-top: 5px;
    width: 100%;
    margin-bottom: 40px;
}

h3 {
    align-self: center;
    font-size: 20px;
    margin-bottom: 0;
}

/*************************** Edit Profile *************************/
.edit_field {
    display: flex;
    gap: 5px;
    width: 80%;
}
/*************************** Profile Page *************************/
.profile_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--tertiary-colour);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    height: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.banner_box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 200px;
    background-position: center;
    background-size: cover;
    align-items: center;
    justify-content: flex-end;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.banner_info {
    display: flex;
    justify-content: space-evenly;
    width: 50%;
    background-color: white;
    border: solid 1px #adadad;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-top: 10px;
    z-index: 10;
}

.profile_picture {
    height: 120px;
    width: 120px;
    margin-bottom: 5px;
    border: solid;
    object-fit: cover;
    cursor: pointer;
}

.profile-pic-wrapper:hover .edit-overlay {
    opacity: 1 !important;
    ;
}

.edit-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

    .profile_container {
    display: flex;
    width: 90%;
    background-color: var(--primary-colour);
    padding: 20px;
    margin-top: 40px;
    border-radius: 10px;
    justify-content: space-evenly;
}

.profile_object {
    display: flex;
    width: 70%;
    flex-direction: column;
    padding: 30px;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    margin-top: 30px;
    align-items: center;
}

.profile_info_object {
    display: flex;
    gap: 10px;
    width: 320px;
    flex-direction: column;
    align-items: flex-start;
    
}


.banner_info_object {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}



.profile_line {
    border: none;
    height: 1px;
    background-color: rgb(142, 142, 142);
    opacity: 0.5;
    margin-top: 5px;
    width: 80%;
    margin-bottom: 20px;
}

.txt_background {
    border-radius: 5px;
    background-color: rgb(226 225 225 / 83%);
    padding-left: 5px;
    padding-right: 5px;
    height: fit-content;
}

.profile_card_object {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    border: solid 2px rgb(193 193 193);
    padding: 30px;
    gap: 5px;
}

.txt_window {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    background-color: rgb(226 225 225 / 83%);
    padding: 10px;
    margin-top: 5px;
}

.divider {
    border: none;
    height: 1px;
    background-color: rgb(142, 142, 142);
    opacity: 0.5;
    margin-top: 30px;
    width: 40%;
    margin-bottom: 30px;
}

.carousel-indicators li {
    background-color: #343a40;
}

.carousel-indicators .active {
    background-color: #000;
}

/* Dark carousel control arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    width: 2rem;
    height: 2rem;
    background-color: black;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

.carousel-control-prev-icon {
    mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='white' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 0L4.8.7 2.3 3.2l-.7.8.7.8 2.5 2.5.7.7V0z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='white' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 0L4.8.7 2.3 3.2l-.7.8.7.8 2.5 2.5.7.7V0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='white' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 0v8l.7-.7 2.5-2.5.7-.8-.7-.8-2.5-2.5L2.5 0z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='white' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 0v8l.7-.7 2.5-2.5.7-.8-.7-.8-2.5-2.5L2.5 0z'/%3E%3C/svg%3E");
}

.potential_object {
    width: 140px;
    height: 140px;
    border-radius: 10px;
    border: solid black 2px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
}

.small_btn {
    width: 50px;
    height: 20px;
    background-color: var(--primary-colour);
    cursor: pointer;
    border-radius: 50px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.1s ease-in-out;
}

.small_btn:hover {
    opacity: 1;
}

.carousel-inner {

    width: 100%;
    height: 200px;
    align-content: center;
}

.potential_container {
    padding-right: 50px;
    padding-left: 50px;
    justify-content: center;
    display: flex;
    gap: 5%;
    width: 100%;
}

.small_txt {
    text-align: center;
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 600;
}

.bi-instagram {
    color: black;
    font-size: 40px;
}

.account_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/background 1.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(6px);
    z-index: 1;
}

/*************************** Job Page *************************/
.job_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 30px;
    width: 65%;
    padding-top: 80px;
    padding-left: 150px;
    padding-right: 150px;
    padding-bottom: 50px;
}

.job_header {
    display: flex;
    width: 100%;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.job_header_details {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}