/* Existing CSS content remains here... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    line-height: 0.8;
}

a {
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style: none;
}

.container {
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 16px;
}

.heading h1 {
    margin: 40px 0 0px;
    color: #121212;
    font-family: Poppins;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    /* 150% */
    width: auto;
}

.heading p {
    color: #474747;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    width: auto;
}

.design h3 {
    color: #000;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 150% */
    width: auto;
}

.card-contain p {
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
        0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 17px;
    color: #fff;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.design .card {
    border-radius: 20px;
}

.design .card .expeir {
    color: #dc2626;
    font-family: Inter;
    font-size: 13.891px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding: 7px 8px;
    border-radius: 8px;
    background: #f6fff8;
    position: absolute;
    right: 12px;
    bottom: 0;
}

.design .card .card-body-text {
    background: #f6fff8;
}

.design .card .card-body-text ul,
#slider .card .card-body-text ul {
    display: flex;
    margin: 0;
    padding: 0;
    column-gap: 10px;
}

.design .card .card-body-text ul li,
#slider .card .card-body-text ul li {
    color: #837e7e;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    position: relative;
}

.design .card .card-body-text ul li::after,
#slider .card .card-body-text ul li::after {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: #837e7e;
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.design .card .card-body-text ul li:last-child:after,
#slider .card .card-body-text ul li:last-child:after {
    content: "";
    display: none;
}

.design .card .card-body-text ul .level,
#slider .card .card-body-text ul .level {
    color: #151515;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.design .card .card-body-text .apply-btn i {
    transform: rotate(-45deg);
    font-size: 16px;
}

.design .row {
    row-gap: 20px;
}

#slider {
    padding: 60px 0 73px;
}

#slider .card {
    border-radius: 20px;
}

#slider .card .card-body-text {
    background: #f6fff8;
}

#slider .card .expeir {
    color: #dc2626;
    font-family: Inter;
    font-size: 13.891px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding: 7px 8px;
    border-radius: 8px;
    background: #f6fff8;
    position: absolute;
    right: 12px;
    bottom: 0;
}

#slider .arrows {
    font-size: 18px;
    color: #22c55e;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #22c55e;
    border-radius: 50%;
    background: white;
    z-index: 1;
    transition: all linear 0.3s;
    position: absolute;
}

#slider .arrowNext {
    top: -56px;
    right: 60px;
}

#slider .arrowPrev {
    top: -56px;
    right: 0;
}

#slider .arrows:hover {
    color: #fff;
    border: 1px solid #22c55e;
    background: #22c55e;
}

.design {
    padding: 0px 0 100px;
}

.design .card .card-image {
    position: relative;
}

#slider .card .card-image {
    position: relative;
}

#slider .container .row .col-lg-4 {
    padding: 6px;
}

#slider .card .card-body-text ul li {
    font-size: 13px;
}

.view_details {
    color: #038317 !important;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
}

/* Custom animation css for arrow */

.animation::after {
    content: "";
    position: absolute;
    top: 37%;
    left: 37%;
    z-index: -1;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 50%;
    opacity: 1;
    animation: arrow 1.5s ease-in-out infinite;
}

@keyframes arrow {
    0% {
        transform: scale(3.5);
        background: #fff;
        opacity: 1;
    }

    50% {
        transform: scale(4.5);
        background: #80daa1;
        opacity: 0.5;
    }

    100% {
        transform: scale(5.5);
        background: #22c55e;
        opacity: 0;
    }
}

/* Custom animation css for arrow */

#footer {
    background: url(../images/Footer.png) no-repeat center/cover;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #22c55e;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #22c55e;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
}

.social-links a:hover {
    color: white;
    background: #22c55e;
}

.copyright {
    color: #374151;
    font-family: Inter, sans-serif;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* ===================================== */
/* ===== Job page Design Start ======== */
/* ===================================== */
#banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
    color: white;
    font-family: "Poppins", sans-serif;
}

.banner-content {
    padding: 0 1rem;
}

.job-category {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.job-title {
    font-size: 2rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.salary-range {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0 2rem;
}

.salary-unit {
    font-size: 1rem;
    font-weight: 500;
    color: #c8c8c8;
    margin-left: 0.5rem;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    min-width: 120px;
}

.detail-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1rem;
    font-weight: 400;
    color: #c8c8c8;
}

.apply-card {
    background: #fafffb;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e1f3e4;
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.apply-text {
    color: #484848;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.btn-apply {
    width: 100%;
    background: #038317;
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 31px;
}

.apply-note {
    color: #636363;
    text-align: center;
    font-size: 1rem;
    line-height: 1.3;
    margin: 2rem auto 1.5rem;
}

.legal-note {
    color: #484848;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Job summary part  */
#job_summary {
    padding: 60px 0;
}

.job_summary_pera {
    color: #474747;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.job_summary_details_list {
    list-style: disc;
}

.job_summary_details_list li {
    color: #474747;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 234%;
    /* 37.44px */
}

.detail_heading {
    color: #121212;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.summary_divs {
    margin-bottom: 40px;
}

.job_side_details_div {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid #e1f3e4;
    background: #fafffb;
    backdrop-filter: blur(103.94999694824219px);
    margin-top: 130px;
}

.job_side_details_div .row {
    row-gap: 40px;
}

.job_side_details_div h3 {
    color: #121212;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 24px;
}

.job_side_details_icon_div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.icon_div {
    background: linear-gradient(155deg, #effff2 10.75%, #a4e8ae 113.64%);
    stroke-width: 1px;
    stroke: #e1f3e4;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.icon_div i {
    font-size: 24px;
    color: #038317;
}

.job_side_details_icon_div h4 {
    color: #636363;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.job_side_details_icon_div p {
    color: #121212;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.job_tag_div {
    margin-top: 32px;
}

.job_tag_div strong {
    color: #038317;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #e1f3e4;
    background: #d9ffdf;
}

.tags {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Job summary part  */

/* Location Part Start */
#location {
    padding-bottom: 120px;
}

.map_heading {
    color: #121212;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.main_location_in_word {
    color: #474747;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 234%;
    /* 37.44px */
}

.location_btn {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.location_btn a {
    color: #038317;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
}

.location_btn span {
    border-radius: 6px;
    background: var(--White-Pure-White, #fff);
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.1);
    margin-left: 15px;
    padding: 3px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.map_div {
    border-radius: 24px;
    border: 1px solid #e1f3e4;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
    backdrop-filter: blur(103.94999694824219px);
    overflow: hidden;
    padding: 0;
}

/* Location Part End */

/* ===================================== */
/* ======== Job page Design End ======== */
/* ===================================== */

/* ===================================== */
/* ======== Form page Design Start ======== */
/* ===================================== */
#hiringBanner {
    padding: 10px 0;
}

#hiringBanner .banner_image .hire_ban_img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    max-width: 100%;
    display: block;
}

/* Form Section Styles */
#form .container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tittle_Header {
    margin: 20px 0;
    color: #121212;
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 20px;
    border-bottom: 1px solid #9e9fa1;
}

.tittle_Header span {
    color: #06a710;
}

.tittle_pera {
    color: #121212;
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
}

.summary_divs {
    margin-bottom: 30px;
}

.job_summary_heading {
    color: #121212;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.job_summary_heading_Apply {
    color: #06a710;
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: underline;
}

.job_summary_pera {
    color: #474747;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.job_summary_details_list {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.job_summary_details_list li {
    color: #474747;
    font-family: "Poppins", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 2;
}

.list-style-none {
    list-style: none;
    padding-left: 0;
}

.list-style-none li {
    position: relative;
    padding-left: 25px;
}

.list-style-none li:before {
    content: "✔";
    color: #06a710;
    position: absolute;
    left: 0;
}

.form {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.form i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #06a710;
    font-size: 16px;
}

input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    color: #333;
    font-size: 16px;
    box-sizing: border-box;
}

input:focus {
    outline: none;
    border-color: #06a710;
    box-shadow: 0 0 0 2px rgba(6, 167, 16, 0.2);
}
/* ================================================= */
/* ========= NEW FILE UPLOAD STYLES START ========== */
/* ================================================= */
.upload-container {
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dropbox {
    width: 100%;
    height: 220px;
    border: 3px dashed #06a710;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f6fff8;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 20px;
    gap: 15px;
}

.dropbox:hover {
    background-color: #e8f5e9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dropbox.dragover {
    background-color: #e8f5e9;
    border-color: #05820d;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropbox-icon {
    font-size: 40px;
    color: #06a710;
    margin-bottom: 10px;
}

.dropbox-text {
    font-size: 18px;
    color: #06a710;
    margin-bottom: 5px;
    font-weight: 600;
}

.dropbox-subtext {
    font-size: 14px;
    color: #666;
    text-align: center;
}

.browse-btn {
    background-color: #06a710;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 20px;
}

.browse-btn:hover {
    background-color: #05820d;
}

.file-previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 15px;
    width: 100%;
}

.file-preview {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.file-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.preview-img-container {
    height: 150px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.preview-img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.file-icon {
    font-size: 60px;
    color: #06a710;
}

.file-info {
    padding: 12px;
}

.file-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    font-size: 12px;
    color: #666;
}

.file-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.remove-btn {
    background-color: #ff4d4f;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.remove-btn:hover {
    background-color: #d9363e;
}

.upload-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background-color: #06a710;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.upload-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.upload-notification.success {
    background-color: #52c41a;
}

.upload-notification.error {
    background-color: #ff4d4f;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
}

.upload-notification.show .notification-progress {
    transition: transform 3s linear;
    transform: scaleX(1);
}


.upload-stats {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin-top: 10px;
    display: none;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stats-title {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.stats-info {
    display: flex;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 18px;
    color: #06a710;
    font-weight: 600;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.progress-bar {
    height: 8px;
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #06a710;
    width: 0;
    transition: width 0.3s ease;
}

.empty-state {
    display: none;
    text-align: center;
    padding: 30px;
    color: #666;
}

@media (max-width: 600px) {
    .file-previews {
      grid-template-columns: 1fr;
    }

    .dropbox {
      height: 180px;
    }
}

input[type="file"] {
    display: none;
}
/* ================================================= */
/* ========= NEW FILE UPLOAD STYLES END ============ */
/* ================================================= */

.form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #06a710;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 20px auto 0;
    width: 50%;
}

.form_submit:hover {
    background: #05820d;
    gap: 30px;
}

.form_submit i {
    height: 15px;
    width: 15px;
    color: white;
    transition: transform 0.2s;
}

.form_submit:hover i {
    transform: translateY(-2px) rotate(-25deg);
}

@media (max-width: 640px) {
    .form_submit {
        width: 100%;
    }
}

.name_email {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.call_sallary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.animated-form {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Form css design End */

/* ===================================== */
/* ======== Form page Design End ======== */
/* ===================================== */f
