/* Section */
.career-about-section {
    padding: 90px 0;
}

/* Layout */
.about-container {
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    position: relative;
}

.about-images img {
    display: block;
    object-fit: contain;
}

.img-small {
    margin-bottom: 20px;
}

.img-large {
    border-radius: 6px;
    margin: 0px 0px 70px 0px;
}

.img-medium {
    position: absolute;
    right: -12px;
    top: 0;
    text-align: right;
    border-radius: 5px;
}

.img-floating {
    position: absolute;
    bottom: 20px;
    right: 100px;
    margin-top: 40px;
}

/* Content */
.about-content {
    padding: 0 20px;
}

.about-label {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b89b5e;
    margin-bottom: 12px;
}

.about-intro {
    font-weight: 500;
    margin-bottom: 15px;
}

.about-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-images {
        order: -1;
    }

    .img-floating {
        display: none;
    }
}

/* Section */
.career-section {
    position: relative;
    padding-bottom: 100px;
    background: #fff;
}

/* Job List */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Job Card */
.job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    border-radius: 12px;
}

/* Job Info */
.job-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.job-info ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #777;
}

/* Decorative Image */
.career-decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 450px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .career-heading h2 {
        font-size: 32px;
    }

    .career-decoration {
        display: none;
    }
}

/* career details  */
.career-details-section {
    padding: 80px 0;
    position: relative;
    /* background: #fff8f2; */
}

.career-details-section h1,
.career-details-section h2,
.career-details-section h3 {
    color: var(--dark);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.job-details ul {
    list-style: disc inside;
    margin-bottom: 20px;
}

.job-details ul li {
    margin-bottom: 10px;
}

.job-details p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.apply-form,
.contact-us-from {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 12px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    /* border: 1px solid #eaeaea; */
}

.apply-form h3 {
    margin-bottom: 20px;
    color: var(--dark);
}

.apply-form .form-control,
.apply-form .form-select {
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 10px 15px;
    border: 1px solid #ddd;
}

.apply-form button {
    background-color: var(--dark);
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.apply-form button:hover {
    background-color: #efc360;
    color: #fff;
}

.apply-form-section {
    padding: 90px 0;
}

/* Job Info Sidebar */
.job-info-sidebar {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 12px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border: 1px solid #eaeaea; */
}

.job-info-sidebar .job-info-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark);
}

.job-info-sidebar .job-info-list {
    list-style: none;
    padding: 0;
}

.job-info-sidebar .job-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.job-info-sidebar .job-info-list li:last-child {
    border-bottom: none;
}

.job-info-sidebar .label {
    font-weight: bold;
    color: #333;
}

.career-decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    opacity: 0.15;
    pointer-events: none;
}
