/* ======================================
   BLOG INDEX PAGE ONLY
====================================== */
*{
    box-sizing:border-box;
}

.career-page{
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    padding: 20px 0;
}

/* ======================================
   MAIN CONTAINER
====================================== */

.career-page .career-main-container{
    width: 50%;
    margin: auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.career-page .career-container{
    width: 75%;
    margin: auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* ======================================
   LEFT CONTENT
====================================== */

.career-page .left-content{
    flex: 1;
    min-width: 0;
}

.career-page .career-card{
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.career-page .career-title{
    font-size: 26px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.career-page .career-title a{
    text-decoration: none;
    color: #222;
}

.career-page .career-title a:hover{
    color: #007bff;
}

.career-page .career-meta{
    color: #777;
    margin-bottom: 15px;
    font-size: 14px;
}

.career-page .career-description{
    color: #444;
    line-height: 1.8;
    display: -webkit-box;
    overflow: hidden;
}

.career-page .read-more{
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.career-page .read-more:hover{
    background: #0056b3;
}

/* ======================================
   PAGINATION
====================================== */

.career-page .career-pagination{
    margin-top: 30px;
}

.career-page .career-pagination a{
    display: inline-block;
    padding: 10px 15px;
    background: #fff;
    margin-right: 5px;
    text-decoration: none;
    border-radius: 4px;
    color: #333;
    border: 1px solid #ddd;
}

.career-page .career-pagination a.active{
    background: #007bff;
    color: #fff;
}

.career-page .back-btn:hover{

    background:linear-gradient(135deg, #0056b3, #003f7f);

    transform:translateY(-2px);

    box-shadow:0 6px 18px rgba(0,123,255,0.4);

}

/* ======================================
   RESPONSIVE
====================================== */



/* ======================================
  Career Search bar
====================================== */

.career-search-container {
    margin: 25px 0 35px;
}

.career-search-form {
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: 700px;
}

.career-search-input {
    flex: 1;
    height: 52px;
    padding: 0 18px;
    border: 1px solid #dce3ea;
    border-radius: 10px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.career-search-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13,110,253,.15);
}

.career-search-btn {
    height: 52px;
    padding: 0 28px;
    border: none;
    border-radius: 10px;
    background: #0d6efd;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.career-search-btn:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
}


/* ======================================
  Career Search bar
====================================== */

.careers-hero {
    background: linear-gradient(135deg, #0d6efd 0%, #084298 100%);
    color: #fff;
    padding: 80px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers-hero::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.careers-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.careers-hero-content {
    position: relative;
    z-index: 2;
}

.careers-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.careers-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.careers-hero p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}
.careers-hero h1,
.careers-hero p,
.careers-badge {
    color: #ffffff !important;
}

.job-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-details {
    margin-right: auto;
}

.btn-apply {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* ======================================
  Career Apply Form
====================================== */

.career-apply-form {
    max-width: 800px;
    margin: 0 auto;
}

.career-form-input,
.career-form-textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid #dce3ea;
    border-radius: 12px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.career-form-input:focus,
.career-form-textarea:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13,110,253,.15);
}

.career-form-textarea {
    min-height: 140px;
    resize: vertical;
}
.career-apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width {
    grid-column: 1 / -1;
}



@media (max-width: 768px) {
    .career-apply-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 50px 25px;
    }

    .careers-hero h1 {
        font-size: 32px;
    }

    .careers-hero p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .career-search-form {
        flex-direction: column;
    }

    .career-search-btn,
    .career-search-input {
        width: 100%;
    }
}

@media(max-width: 991px){

    .career-page .career-container{
        flex-direction: column;
        gap:20px;
    }

    .career-page .left-content,
    .career-page .right-sidebar{
        width:100%;
        min-width:100%;
    }

}

