/* ===========================
   CAREER PAGES - PREMIUM DESIGN
   =========================== */

:root {
    --primary-gradient: linear-gradient(135deg, #19183B 0%, #708993 50%, #A1C2BD 100%);
    --accent-gradient: linear-gradient(135deg, #A1C2BD 0%, #E7F2EF 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-premium: 0 20px 60px rgba(25, 24, 59, 0.4);
    --shadow-hover: 0 30px 80px rgba(25, 24, 59, 0.5);
}

/* ===========================
   PAGE TITLE SECTION
   =========================== */

.page-title.career-page-title {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    /* padding: 120px 0 80px; */
    overflow: hidden;
}

.page-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/career-banner.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.page-title-content {
    position: relative;
    z-index: 1;
}

.title-subtext {
    margin-top: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* ===========================
   ANIMATED BACKGROUND
   =========================== */

.career-background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(161, 194, 189, 0.15), rgba(112, 137, 147, 0.05));
    filter: blur(40px);
    animation: float 25s infinite ease-in-out;
}

.bg-element-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.bg-element-2 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: -5%;
    animation-delay: -8s;
}

.bg-element-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 15%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ===========================
   CAREER INTRO SECTION
   =========================== */

.career-intro-stats {
    padding-top: 60px;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.career-intro-card {
    background: linear-gradient(135deg, rgba(25, 24, 59, 0.9), rgba(112, 137, 147, 0.8));
    border-radius: 30px;
    padding: 60px 50px;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.career-intro-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.career-intro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(161, 194, 189, 0.2), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.intro-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #E7F2EF, #A1C2BD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.intro-item {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.intro-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.intro-item:hover::before {
    opacity: 0.1;
}

.intro-item:hover {
    border-color: rgba(161, 194, 189, 0.5);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(161, 194, 189, 0.3);
}

.intro-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(161, 194, 189, 0.2), rgba(112, 137, 147, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #A1C2BD;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.intro-item:hover .intro-icon {
    background: linear-gradient(135deg, #A1C2BD, #708993);
    color: #fff;
    transform: rotateY(360deg) scale(1.1);
}

.intro-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.intro-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===========================
   STATS COUNTER
   =========================== */

.career-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(231, 242, 239, 0.05), rgba(161, 194, 189, 0.05));
    border-radius: 30px;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #E7F2EF, #A1C2BD, #708993);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===========================
   JOB LISTING SECTION
   =========================== */

.job-listing-wrapper {
    position: relative;
    padding: 80px 40px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(25, 24, 59, 0.95), rgba(112, 137, 147, 0.9));
    box-shadow: var(--shadow-premium);
}

.job-listing-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(161, 194, 189, 0.1), transparent),
                radial-gradient(circle at 20% 80%, rgba(112, 137, 147, 0.1), transparent);
    pointer-events: none;
}

.job-overlay-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
}



.sub-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.sub-title {
    color: #A1C2BD;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.title-line {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #A1C2BD, #E7F2EF);
    border-radius: 2px;
    animation: expandWidth 0.8s ease 0.5s forwards;
    opacity: 1;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 70px;
        opacity: 1;
    }
}

.heading-section .title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.heading-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
}

/* ===========================
   JOB ITEMS
   =========================== */

.new-job-listing {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 70px;
}

.job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

.job-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.job-item:hover::before {
    opacity: 1;
}

.job-item:hover {
    background: linear-gradient(135deg, rgba(161, 194, 189, 0.15), rgba(112, 137, 147, 0.1));
    border-color: rgba(161, 194, 189, 0.5);
    transform: translateX(10px) translateY(-5px);
    box-shadow: -10px 15px 50px rgba(25, 24, 59, 0.4);
}

.job-item-main {
    flex: 1 1 55%;
}

.job-item-title {
    margin-bottom: 15px;
}

.job-item-title a {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.job-item:hover .job-item-title a {
    color: #A1C2BD;
    transform: translateX(5px);
}

.job-item-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.job-item-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.job-item:hover .job-item-meta span {
    background: rgba(161, 194, 189, 0.2);
}

.job-item-meta .icon-map-pin,
.job-item-meta .icon-clock {
    color: #A1C2BD;
    font-size: 18px;
}

.job-item-action {
    flex-shrink: 0;
}

.job-item-action .tf-btn-readmore {
    display: inline-flex;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    width: 56px;
    border: 2px solid #A1C2BD;
    /* border-radius: 50%; */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 55px;
}

.job-item-action .tf-btn-readmore::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #A1C2BD, #708993);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;

}

.job-item-action .tf-btn-readmore:hover::before {
    opacity: 1;
}

.job-item-action .tf-btn-readmore:hover {
    width: auto;
    min-width: 180px;
    height: 55px;
    padding: 0 28px;
    border-radius: 30px;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(161, 194, 189, 0.4);
    transform: translateY(-3px);
    gap: 12px;
}

.job-item-action .tf-btn-readmore .text,
.job-item-action .tf-btn-readmore .plus {
    position: absolute;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-item-action .tf-btn-readmore .text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
}

.job-item-action .tf-btn-readmore .plus {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 18px;
}

.job-item-action .tf-btn-readmore .plus i {
    display: block;
    line-height: 1;
}
 
.job-item-action .tf-btn-readmore .text {
    line-height: 1;
} 

.job-item-action .tf-btn-readmore:hover .plus {
    color: #fff;
}

.job-item-action .tf-btn-readmore:hover .text {
    max-width: 150px;
    opacity: 1;
}



/* ===========================
   NO JOBS STATE
   =========================== */

.no-jobs-found {
    text-align: center;
    padding: 80px 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    border: 3px dashed rgba(161, 194, 189, 0.3);
    margin: 50px 0;
}

.no-jobs-icon {
    font-size: 80px;
    color: rgba(161, 194, 189, 0.3);
    margin-bottom: 35px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.no-jobs-found h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #fff;
}

.no-jobs-found p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-size: 16px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===========================
   CALL TO ACTION
   =========================== */

.career-cta {
    padding: 70px 50px;
    background: linear-gradient(135deg, rgba(25, 24, 59, 0.8), rgba(112, 137, 147, 0.7));
    border-radius: 30px;
    border: 2px solid var(--glass-border);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #A1C2BD;
    border-radius: 50%;
    animation: particleFloat 12s infinite linear;
    box-shadow: 0 0 20px rgba(161, 194, 189, 0.6);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: -4s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: -8s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(150px, -150px);
        opacity: 0;
    }
}

.career-cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(135deg, #E7F2EF, #A1C2BD);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.tf-btn-primary {
    background: linear-gradient(135deg, #A1C2BD, #708993);
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(161, 194, 189, 0.3);
}

.tf-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(161, 194, 189, 0.5);
}

.tf-btn-outline {
    background: transparent;
    border: 2px solid #A1C2BD;
    color: #A1C2BD;
    padding: 16px 38px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
}

.tf-btn-outline:hover {
    background: #A1C2BD;
    color: #19183B;
    transform: translateY(-5px);
}

/* ===========================
   BENEFITS SECTION
   =========================== */

.benefits-section {
    margin-top: 0;
    padding: 80px 50px;
    background: linear-gradient(135deg, rgba(231, 242, 239, 0.05), rgba(161, 194, 189, 0.05));
    border-radius: 35px;
    border: 2px solid rgba(161, 194, 189, 0.2);
    position: relative;
    overflow: hidden;
}

.benefits-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    background: radial-gradient(circle, rgba(161, 194, 189, 0.1), transparent);
    border-radius: 50%;
}

.bg-shape.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
}

.bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.section-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 19px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.benefit-card {
    padding: 40px 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-card:hover {
    border-color: #A1C2BD;
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(161, 194, 189, 0.3);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(161, 194, 189, 0.2), rgba(112, 137, 147, 0.2));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #A1C2BD, #708993);
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(161, 194, 189, 0.4);
}

.icon-fallback {
    font-size: 40px;
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===========================
   FLOATING ACTION & SCROLL PROGRESS
   =========================== */

.floating-action {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

.fab-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #A1C2BD, #708993);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(161, 194, 189, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.fab-btn:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 20px 50px rgba(161, 194, 189, 0.7);
}

.fab-tooltip {
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(25, 24, 59, 0.95);
    padding: 12px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border: 2px solid #A1C2BD;
    font-weight: 600;
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    right: 90px;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #A1C2BD, #708993, #19183B);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px rgba(161, 194, 189, 0.6);
}

/* ===========================
   CAREER DETAILS PAGE - PREMIUM ENHANCED
   =========================== */

.section-service-details {
    padding: 40px 0;
    position: relative;
}

.wg-service-details {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 35px;
    padding: 70px;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.wg-service-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A1C2BD, #708993, #19183B, #708993, #A1C2BD);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.details-content h2.title {
    font-size: 42px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #E7F2EF, #A1C2BD);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.details-content h3.title {
    font-size: 28px;
    margin-bottom: 25px;
    color: #A1C2BD;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}



.details-content .desc p {
    font-size: 18px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.details-content ul {
    list-style: none;
    padding-left: 0;
}

.details-content ul li {
    font-size: 17px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.details-content ul li:hover {
    color: #fff;
    transform: translateX(5px);
}

.details-content ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #A1C2BD, #708993);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(161, 194, 189, 0.4);
    transition: all 0.3s ease;
}

.details-content ul li:hover::before {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 20px rgba(161, 194, 189, 0.6);
}

/* Enhanced Job Detail Header Card */
.job-detail-card {
    background: linear-gradient(135deg, rgba(25, 24, 59, 0.95), rgba(112, 137, 147, 0.85));
    border-radius: 35px;
    padding: 60px;
    border: 2px solid rgba(161, 194, 189, 0.2);
    backdrop-filter: blur(30px);
    box-shadow: 0 25px 70px rgba(25, 24, 59, 0.5);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    animation: slideInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(161, 194, 189, 0.15), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0.6;
}

.job-detail-card::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(161, 194, 189, 0.15), transparent);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

.job-detail-title {
    font-size: 52px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #E7F2EF 0%, #A1C2BD 50%, #708993 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: gradientShift 5s ease infinite;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.job-meta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.job-meta-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(161, 194, 189, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.job-meta-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(161, 194, 189, 0.2), rgba(112, 137, 147, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.job-meta-pill:hover::before {
    opacity: 1;
}

.job-meta-pill:hover {
    background: rgba(161, 194, 189, 0.2);
    border-color: #A1C2BD;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(161, 194, 189, 0.3);
}

.job-meta-pill i {
    color: #A1C2BD;
    font-size: 22px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.job-meta-pill:hover i {
    transform: scale(1.2) rotate(5deg);
}

.job-meta-pill span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Enhanced Section Boxes */
.job-section-box {
    margin-bottom: 60px;
    padding: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-radius: 25px;
    border: 2px solid rgba(161, 194, 189, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.job-section-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #A1C2BD, #708993);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.job-section-box:hover::before {
    opacity: 1;
}

.job-section-box:hover {
    background: linear-gradient(135deg, rgba(161, 194, 189, 0.08), rgba(112, 137, 147, 0.04));
    border-color: rgba(161, 194, 189, 0.3);
    transform: translateX(5px);
    box-shadow: -5px 10px 30px rgba(25, 24, 59, 0.3);
}

.section-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A1C2BD, #708993);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(161, 194, 189, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.section-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #708993, #19183B);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.job-section-box:hover .section-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(161, 194, 189, 0.6);
}

.job-section-box:hover .section-icon-wrapper::before {
    opacity: 1;
}

.section-icon-wrapper i {
    color: #fff;
    font-size: 24px;
    position: relative;
    z-index: 1;
}

/* Enhanced Benefits Section */
.job-offer-section {
    margin-bottom: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(161, 194, 189, 0.12), rgba(112, 137, 147, 0.08));
    border-radius: 30px;
    border: 2px solid rgba(161, 194, 189, 0.25);
    position: relative;
    overflow: hidden;
}

.job-offer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(161, 194, 189, 0.1), transparent),
                radial-gradient(circle at 70% 50%, rgba(112, 137, 147, 0.1), transparent);
    pointer-events: none;
}

.benefit-pill-card {
    padding: 35px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-pill-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(161, 194, 189, 0.15), rgba(112, 137, 147, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-pill-card:hover::before {
    opacity: 1;
}

.benefit-pill-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #A1C2BD;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(161, 194, 189, 0.3);
}

.benefit-pill-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.benefit-pill-card:hover .benefit-pill-icon {
    transform: scale(1.2) rotate(-5deg);
}

/* Enhanced Apply Banner */
.job-apply-banner {
    text-align: center;
    margin-top: 70px;
    padding: 70px 50px;
    background: linear-gradient(135deg, rgba(25, 24, 59, 0.9), rgba(112, 137, 147, 0.8));
    border-radius: 35px;
    border: 2px solid rgba(161, 194, 189, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(25, 24, 59, 0.4);
}

.job-apply-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png');
    opacity: 0.08;
    pointer-events: none;
}

.job-apply-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(161, 194, 189, 0.15), transparent);
    pointer-events: none;
}

.job-back-btn {
    padding: 18px 45px;
    background: transparent;
    border: 2px solid #A1C2BD;
    color: #A1C2BD !important;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.job-back-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #A1C2BD, #708993);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.job-back-btn:hover::before {
    opacity: 1;
}

.job-back-btn:hover {
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(161, 194, 189, 0.4);
}

.job-back-btn i,
.job-back-btn span {
    position: relative;
    z-index: 1;
}

.job-detail-header {
    margin-bottom: 60px;
}

/* Enhanced Not Found Card */
.job-not-found-card {
    text-align: center;
    padding: 120px 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border-radius: 40px;
    border: 3px dashed rgba(161, 194, 189, 0.4);
    position: relative;
    overflow: hidden;
}

.job-not-found-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(161, 194, 189, 0.08), transparent);
    pointer-events: none;
}

.job-not-found-icon {
    font-size: 120px;
    color: rgba(161, 194, 189, 0.4);
    margin-bottom: 35px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* Enhanced Button Styles */
.details-content .tf-btn {
    padding: 20px 55px;
    background: linear-gradient(135deg, #A1C2BD, #708993);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 35px rgba(161, 194, 189, 0.5);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.details-content .tf-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #708993, #19183B);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.details-content .tf-btn:hover::before {
    opacity: 1;
}

.details-content .tf-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 45px rgba(161, 194, 189, 0.7);
}

.details-content .tf-btn span,
.details-content .tf-btn i {
    position: relative;
    z-index: 1;
}

/* ===========================
   JOB APPLICATION PAGE
   =========================== */

.section-contact.p-contact {
    padding: 80px 0;
}

.form-contact-us {
    background: linear-gradient(135deg, rgba(25, 24, 59, 0.6), rgba(112, 137, 147, 0.5));
    border-radius: 30px;
    padding: 60px 50px;
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-premium);
}

.form-contact-us .heading-section h2 {
    font-size: 36px;
    background: linear-gradient(135deg, #E7F2EF, #A1C2BD);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.form-contact-us fieldset {
    margin-bottom: 0;
}

.form-contact-us .item {
    margin-bottom: 0;
}

.form-contact-us label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 15px;
    display: block;
}

.form-contact-us .position-relative {
    position: relative;
}

.form-contact-us .position-relative i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #A1C2BD;
    font-size: 20px;
    z-index: 2;
}

.form-contact-us input,
.form-contact-us textarea {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-contact-us input[type="file"] {
    padding: 18px 20px;
}

.form-contact-us textarea {
    min-height: 180px;
    resize: vertical;
    padding: 18px 20px;
}

.form-contact-us input:focus,
.form-contact-us textarea:focus {
    outline: none;
    border-color: #A1C2BD;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(161, 194, 189, 0.3);
}

.form-contact-us input::placeholder,
.form-contact-us textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-contact-us button.tf-btn {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, #A1C2BD, #708993);
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(161, 194, 189, 0.4);
    cursor: pointer;
}

.job-apply-banner .tf-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(161, 194, 189, 0.6);
}

.job-back-btn:hover {
    background: #A1C2BD;
    color: #19183B !important;
    transform: translateY(-3px);
}

/* ===========================
   ANIMATIONS
   =========================== */

[data-delay] {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translate(-15px, -60px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.6;
    }
}

.title-animation {
    animation: fadeInUp 0.8s ease;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
 
    
    .subtitle {
        font-size: 17px;
    }
    
    .career-intro-card {
        padding: 40px 30px;
    }
    
    .intro-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .career-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 30px;
    }
    
    .stat-number {
        font-size: 44px;
    }
    
    .job-listing-wrapper {
        padding: 60px 30px;
    }
    
    .heading-section .title {
        font-size: 32px;
    }
    
    .job-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }
    
    .job-item:hover {
        transform: translateY(-5px);
    }
    
    .job-item-title a {
        font-size: 20px;
    }
    
    .job-item-action {
        width: 100%;
    }
    
    .job-item-action .tf-btn-readmore {
        /* width: 100%; */
        justify-content: center;
        height: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .tf-btn-primary,
    .cta-buttons .tf-btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .benefits-section {
        padding: 60px 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .wg-service-details {
        padding: 40px 30px;
    }
    
    .details-content h2.title {
        font-size: 32px;
    }
    
    .details-content h3.title {
        font-size: 24px;
    }
    
    .form-contact-us {
        padding: 40px 30px;
    }
    
    .form-contact-us .heading-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .career-stats {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 38px;
    }
    
    .floating-action {
        bottom: 25px;
        right: 25px;
    }
    
    .fab-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .intro-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .benefit-icon {
        width: 75px;
        height: 75px;
        font-size: 35px;
    }
    
    .job-listing-wrapper {
        padding: 50px 20px;
    }
    
    .career-cta {
        padding: 50px 30px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}

/* ===========================
   JOB APPLICATION PAGE ENHANCEMENTS
   =========================== */

/* Enhanced Input Focus Effects */
.form-contact-us input:focus,
.form-contact-us textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(161, 194, 189, 0.4), 
                0 0 0 4px rgba(161, 194, 189, 0.1);
}

/* File Input Styling */
.form-contact-us input[type="file"] {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.form-contact-us input[type="file"]::-webkit-file-upload-button {
    background: linear-gradient(135deg, #A1C2BD, #708993);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.form-contact-us input[type="file"]::-webkit-file-upload-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(161, 194, 189, 0.4);
}

/* Checkbox Styling */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #A1C2BD;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #A1C2BD, #708993);
    border-color: #A1C2BD;
}

input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

/* Submit Button Enhanced */
.form-contact-us button[type="submit"]:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(161, 194, 189, 0.6);
}

.form-contact-us button[type="submit"]:active {
    transform: translateY(-2px) scale(0.98);
}

/* Icon Animations */
.form-contact-us .position-relative i {
    transition: all 0.3s ease;
}

.form-contact-us input:focus ~ i,
.form-contact-us textarea:focus ~ i {
    color: #E7F2EF;
    transform: translateY(-50%) scale(1.1);
}

/* Application Header Card Enhancements */
.form-contact-us + div[style*="max-width: 900px"] {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Loading State for Submit Button */
.form-contact-us button[type="submit"].loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.form-contact-us button[type="submit"].loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced Section Spacing */
.section-contact.p-contact {
    position: relative;
    overflow: hidden;
}

/* Gradient Text for Labels */
.form-contact-us label span[style*="color: #A1C2BD"] {
    background: linear-gradient(135deg, #A1C2BD, #E7F2EF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* File Feedback Styling */
.file-feedback {
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Placeholder Animation */
.form-contact-us input::placeholder,
.form-contact-us textarea::placeholder {
    transition: all 0.3s ease;
}

.form-contact-us input:focus::placeholder,
.form-contact-us textarea:focus::placeholder {
    opacity: 0.3;
    transform: translateX(5px);
}

/* Progress Steps Styling */
div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] > div {
    transition: all 0.4s ease;
}

div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] > div:hover {
    transform: translateY(-5px);
}

div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] > div:hover div[style*="background: linear-gradient"] {
    background: linear-gradient(135deg, #A1C2BD, #708993) !important;
    transform: scale(1.1);
}

/* Responsive Enhancements for Job Application */
@media (max-width: 768px) {
    .form-contact-us {
        padding: 30px 20px;
    }
    
    .form-contact-us input,
    .form-contact-us textarea {
        padding: 15px 15px 15px 45px;
        font-size: 14px;
    }
    
    .form-contact-us .position-relative i {
        left: 15px;
        font-size: 18px;
    }
    
    .form-contact-us button[type="submit"] {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    div[style*="margin-bottom: 30px"][style*="padding: 25px"] {
        padding: 15px !important;
    }
}


/* Form Icon Positioning - Prevent Overlap with Placeholder */
.form-contact-us .position-relative {
    position: relative;
}

.form-contact-us .position-relative i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #A1C2BD;
    font-size: 20px;
    z-index: 2;
    pointer-events: none;
}

.form-contact-us .position-relative input {
    padding-left: 55px !important;
}

/* Confirm Checkbox Container - Reduced Size */
div[style*="margin-bottom: 30px"][style*="padding: 25px"] {
    padding: 18px 20px !important;
}

.form-contact-us label[for="cover_letter"],
.form-contact-us label.cover-letter-label {
    padding-top: 15px;
}

.form-contact-us input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    accent-color: #A1C2BD;
    cursor: pointer;
}

.form-contact-us .checkbox-wrap,
.form-contact-us .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadkcum .page-breadkcum{
        color: #23847b;

}

/* ===========================
   JOB APPLICATION FORM STYLES
   =========================== */

/* Application Header */
.app-header {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(25, 24, 59, 0.9), rgba(112, 137, 147, 0.8));
    border-radius: 25px;
    border: 2px solid rgba(161, 194, 189, 0.3);
    text-align: center;
    box-shadow: 0 20px 60px rgba(25, 24, 59, 0.4);
}

.app-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A1C2BD, #708993);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(161, 194, 189, 0.4);
}

.app-header-icon i {
    font-size: 40px;
    color: #fff;
}

.app-header-title {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #E7F2EF, #A1C2BD);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.app-header-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Form Section Headers */
.form-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(161, 194, 189, 0.2);
}

.form-section-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(161, 194, 189, 0.2), rgba(112, 137, 147, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-section-icon i {
    color: #A1C2BD;
    font-size: 20px;
}

.form-section-title {
    margin: 0;
    font-size: 22px;
    color: #A1C2BD;
    font-weight: 700;
}

/* Form Fields */
.contact-form-modern .cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-form-modern .item {
    position: relative;
}

.contact-form-modern label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.contact-form-modern label span {
    color: #A1C2BD;
}

.contact-form-modern .position-relative {
    position: relative;
}

.contact-form-modern .position-relative i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #A1C2BD;
    font-size: 20px;
    z-index: 2;
    pointer-events: none;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: #A1C2BD;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(161, 194, 189, 0.3);
}

.contact-form-modern input::placeholder,
.contact-form-modern textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form-modern textarea {
    min-height: 200px;
    resize: vertical;
    padding: 18px 20px;
    font-family: inherit;
}

/* File Upload */
.contact-form-modern input[type="file"] {
    padding: 18px 20px;
    cursor: pointer;
}

.contact-form-modern input[type="file"]::-webkit-file-upload-button {
    background: linear-gradient(135deg, #A1C2BD, #708993);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.contact-form-modern input[type="file"]::-webkit-file-upload-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(161, 194, 189, 0.4);
}

.contact-form-modern small {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.contact-form-modern small i {
    color: #A1C2BD;
}

/* Terms Checkbox */
.app-terms-box {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(161, 194, 189, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(161, 194, 189, 0.2);
}

.app-terms-box label {
    display: flex;
    align-items: start;
    gap: 15px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.app-terms-box input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    margin-top: 2px;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #A1C2BD;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.app-terms-box input[type="checkbox"]:hover {
    background: rgba(161, 194, 189, 0.15);
    border-color: #E7F2EF;
    transform: scale(1.05);
}

.app-terms-box input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #A1C2BD, #708993);
    border-color: #A1C2BD;
}

.app-terms-box input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
}

/* Submit Button */
.app-submit-btn {
    padding: 20px 40px;
    background: linear-gradient(135deg, #A1C2BD, #708993);
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(161, 194, 189, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
}

.app-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(161, 194, 189, 0.6);
}

.app-submit-btn:active {
    transform: translateY(-1px);
}

.app-security-note {
    text-align: center;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.app-security-note i {
    color: #A1C2BD;
}

/* What Happens Next Section */
.app-next-steps {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(231, 242, 239, 0.05), rgba(161, 194, 189, 0.05));
    border-radius: 25px;
    border: 2px solid rgba(161, 194, 189, 0.2);
}

.app-next-header {
    text-align: center;
    margin-bottom: 30px;
}

.app-next-title {
    font-size: 26px;
    color: #A1C2BD;
    font-weight: 700;
    margin-bottom: 15px;
}

.app-next-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.app-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.app-step-item {
    text-align: center;
}

.app-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(161, 194, 189, 0.2), rgba(112, 137, 147, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #A1C2BD;
    font-weight: 800;
}

.app-step-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.app-step-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #A1C2BD, #708993);
    width: 0;
    transition: width 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-modern .cols {
        grid-template-columns: 1fr;
    }
    
    .app-header {
        padding: 30px 20px;
    }
    
    .app-header-title {
        font-size: 26px;
    }
    
    .app-next-steps {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .app-header-icon {
        width: 60px;
        height: 60px;
    }
    
    .app-header-icon i {
        font-size: 30px;
    }
    
    .app-header-title {
        font-size: 22px;
    }
    
    .app-header-desc {
        font-size: 15px;
    }
    
    .form-section-title {
        font-size: 18px;
    }
    
    .contact-form-modern input,
    .contact-form-modern textarea {
        padding: 15px 15px 15px 45px;
        font-size: 14px;
    }
    
    .app-submit-btn {
        padding: 16px 30px;
        font-size: 16px;
    }
}


/* ===========================
   COMPREHENSIVE RESPONSIVE STYLES
   FOR ALL CAREER PAGES
   =========================== */

/* Tablet and Below (991px) */
@media (max-width: 991px) {
    /* Career Page */
    .career-intro-stats {
        padding: 50px 30px;
    }
    
    .career-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .job-listing-wrapper {
        padding: 60px 30px;
    }
    
    .job-item {
        padding: 30px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .job-meta {
        flex-wrap: wrap;
    }
    
    .career-cta {
        padding: 60px 30px;
    }
    
    /* Career Details Page */
    .job-detail-header {
        padding: 40px 30px;
    }
    
    .job-detail-content {
        padding: 40px 30px;
    }
    
    .detail-section {
        margin-bottom: 40px;
    }
    
    .requirements-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Job Application Page */
    .form-section-header {
        flex-direction: row;
        gap: 10px;
    }
    
    .form-section-icon {
        width: 35px;
        height: 35px;
    }
}

/* Mobile Landscape and Below (767px) */
@media (max-width: 767px) {
    /* Page Title */
    .page-title.career-page-title {
        padding: 80px 0 50px;
    }
    
    .page-title.career-page-title .title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    /* Career Page */
    .career-intro-stats {
        padding: 40px 20px;
    }
    
    .intro-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .career-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px;
    }
    
    .job-listing-wrapper {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .job-item {
        padding: 25px 20px;
    }
    
    .job-title {
        font-size: 20px;
    }
    
    .job-department {
        font-size: 13px;
    }
    
    .job-meta-item {
        font-size: 13px;
    }
    
    .job-description {
        font-size: 14px;
    }
    
    .btn-view-details {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .career-cta {
        padding: 50px 20px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    /* Career Details Page */
    .job-detail-header {
        padding: 30px 20px;
    }
    
    .job-detail-title {
        font-size: 26px;
    }
    
    .job-detail-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .job-detail-content {
        padding: 30px 20px;
    }
    
    .detail-section h3 {
        font-size: 20px;
    }
    
    .detail-section p,
    .detail-section li {
        font-size: 14px;
    }
    
    .requirement-item,
    .benefit-item {
        padding: 15px;
    }
    
    .requirement-item i,
    .benefit-item i {
        font-size: 18px;
    }
    
    .apply-section {
        padding: 40px 20px;
    }
    
    .apply-cta h3 {
        font-size: 24px;
    }
    
    .btn-apply-now {
        padding: 16px 35px;
        font-size: 16px;
    }
    
    /* Job Application Page */
    .form-section-title {
        font-size: 18px;
    }
    
    .form-section-icon {
        width: 32px;
        height: 32px;
    }
    
    .form-section-icon i {
        font-size: 16px;
    }
    
    /* Section Icon Wrapper - Responsive */
    .section-icon-wrapper {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }
    
    .section-icon-wrapper i {
        font-size: 20px;
    }
    
    .app-terms-box {
        padding: 20px 15px;
    }
    
    .app-terms-box label {
        font-size: 14px;
    }
    
    .app-next-title {
        font-size: 22px;
    }
    
    .app-next-desc {
        font-size: 14px;
    }
    
    .app-step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .app-step-title {
        font-size: 16px;
    }
    
    .app-step-desc {
        font-size: 13px;
    }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
    /* Page Title */
    .page-title.career-page-title .title {
        font-size: 28px;
    }
    
    .breadkcum {
        font-size: 13px;
    }
    
    /* Career Page */
    .career-intro-stats {
        padding: 30px 15px;
    }
    
    .intro-content h2 {
        font-size: 22px;
    }
    
    .intro-content p {
        font-size: 14px;
    }
    
    .career-stats {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .job-listing-wrapper {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .job-item {
        padding: 20px 15px;
    }
    
    .job-title {
        font-size: 18px;
    }
    
    .job-meta {
        gap: 10px;
    }
    
    .job-meta-item {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .btn-view-details {
        width: 100%;
        justify-content: center;
    }
    
    .career-cta {
        padding: 40px 15px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Career Details Page */
    .job-detail-header {
        padding: 25px 15px;
    }
    
    .job-detail-title {
        font-size: 22px;
    }
    
    .job-detail-content {
        padding: 25px 15px;
    }
    
    .detail-section h3 {
        font-size: 18px;
    }
    
    .requirement-item,
    .benefit-item {
        padding: 12px;
        font-size: 13px;
    }
    
    .apply-section {
        padding: 30px 15px;
    }
    
    .apply-cta h3 {
        font-size: 20px;
    }
    
    .apply-cta p {
        font-size: 14px;
    }
    
    /* Section Icon Wrapper - Extra Small */
    .section-icon-wrapper {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .section-icon-wrapper i {
        font-size: 18px;
    }
    
    /* Job Application Page */
    .app-header {
        padding: 25px 15px;
    }
    
    .app-header-icon {
        width: 50px;
        height: 50px;
    }
    
    .app-header-icon i {
        font-size: 24px;
    }
    
    .app-header-title {
        font-size: 20px;
    }
    
    .app-header-desc {
        font-size: 14px;
    }
    
    .form-section-header {
        gap: 8px;
    }
    
    .form-section-title {
        font-size: 16px;
    }
    
    .contact-form-modern input,
    .contact-form-modern textarea {
        padding: 14px 14px 14px 40px;
        font-size: 14px;
    }
    
    .contact-form-modern .position-relative i {
        left: 15px;
        font-size: 16px;
    }
    
    .app-submit-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .app-next-steps {
        padding: 25px 15px;
    }
    
    .app-next-title {
        font-size: 20px;
    }
    
    .app-steps-grid {
        gap: 20px;
    }
}

/* Extra Small Devices (360px) */
@media (max-width: 360px) {
    .page-title.career-page-title .title {
        font-size: 24px;
    }
    
    .job-title {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .app-header-title {
        font-size: 18px;
    }
}


/* ===========================
   CAREER DETAILS PAGE - COMPREHENSIVE RESPONSIVE
   =========================== */

/* Tablet ( 991px) */
@media (max-width: 991px) {
    /* Job Detail Header */
    .job-detail-header {
        padding: 40px 30px;
    }
    
    .job-detail-card {
        padding: 35px 30px;
    }
    
    .job-detail-title {
        font-size: 30px;
        line-height: 1.3;
    }
    
    .job-meta-container {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .job-meta-pill {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .job-meta-pill i {
        font-size: 16px;
    }
    
    /* Job Sections */
    .job-section-box {
        padding: 35px 25px;
        margin-bottom: 35px;
    }
    
    .job-section-box h3 {
        font-size: 24px;
    }
    
    .job-section-box p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .job-section-box ul li {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    /* Benefits Section */
    .job-offer-section {
        padding: 40px 25px;
        margin-bottom: 40px;
    }
    
    .benefit-pill-card {
        padding: 25px 20px;
    }
    
    .benefit-pill-icon {
        font-size: 32px;
        width: 55px;
        height: 55px;
    }
    
    .benefit-pill-card h4 {
        font-size: 17px;
    }
    
    .benefit-pill-card p {
        font-size: 14px;
    }
    
    /* Apply Banner */
    .job-apply-banner {
        padding: 50px 30px;
    }
    
    .job-apply-banner h3 {
        font-size: 32px;
    }
    
    .job-apply-banner p {
        font-size: 17px;
    }
}

/* Mobile ( 767px) */
@media (max-width: 767px) {
    /* Job Detail Header */
    .job-detail-header {
        padding: 30px 20px;
    }
    
    .job-detail-card {
        padding: 30px 20px;
    }
    
    .job-detail-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .job-meta-container {
        gap: 10px;
    }
    
    .job-meta-pill {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .job-meta-pill i {
        font-size: 14px;
        margin-right: 6px;
    }
    
    /* Job Sections */
    .job-section-box {
        padding: 25px 18px;
        margin-bottom: 30px;
    }
    
    .job-section-box h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .job-section-box p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .job-section-box ul {
        padding-left: 20px;
    }
    
    .job-section-box ul li {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    
    .job-section-box ul li::before {
        width: 6px;
        height: 6px;
        top: 10px;
    }
    
    /* Section Headers with Icons */
    .job-section-box > div:first-child,
    .job-offer-section > div:first-child {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    /* Benefits Section */
    .job-offer-section {
        padding: 35px 20px;
        margin-bottom: 35px;
    }
    
    .job-offer-section h3 {
        font-size: 22px;
    }
    
    .benefit-pill-card {
        padding: 20px 18px;
    }
    
    .benefit-pill-icon {
        font-size: 28px;
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .benefit-pill-card h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .benefit-pill-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* Apply Banner */
    .job-apply-banner {
        padding: 40px 20px;
    }
    
    .job-apply-banner h3 {
        font-size: 26px;
        margin-bottom: 18px;
        line-height: 1.3;
    }
    
    .job-apply-banner p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .job-apply-banner .tf-btn,
    .job-back-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    /* Not Found Card */
    .job-not-found-card {
        padding: 40px 20px;
    }
    
    .job-not-found-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }
    
    .job-not-found-card h2 {
        font-size: 28px;
    }
    
    .job-not-found-card p {
        font-size: 16px;
    }
}

/* Small Mobile ( 480px) */
@media (max-width: 480px) {
    /* Job Detail Header */
    .job-detail-header {
        padding: 25px 15px;
    }
    
    .job-detail-card {
        padding: 25px 18px;
    }
    
    .job-detail-title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 18px;
    }
    
    .job-meta-container {
        gap: 8px;
        justify-content: flex-start;
    }
    
    .job-meta-pill {
        padding: 7px 12px;
        font-size: 12px;
    }
    
    .job-meta-pill i {
        font-size: 13px;
        margin-right: 5px;
    }
    
    /* Job Sections */
    .job-section-box {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .job-section-box h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .job-section-box p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .job-section-box ul {
        padding-left: 18px;
    }
    
    .job-section-box ul li {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    /* Section Headers with Icons */
    .job-section-box > div:first-child,
    .job-offer-section > div:first-child {
        gap: 10px;
        margin-bottom: 18px;
    }
    
    /* Benefits Section */
    .job-offer-section {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
    
    .job-offer-section h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .benefit-pill-card {
        padding: 18px 15px;
    }
    
    .benefit-pill-icon {
        font-size: 24px;
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .benefit-pill-card h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .benefit-pill-card p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    /* Apply Banner */
    .job-apply-banner {
        padding: 35px 15px;
    }
    
    .job-apply-banner span[style*="font-size: 14px"] {
        font-size: 12px !important;
        letter-spacing: 2px !important;
    }
    
    .job-apply-banner h3 {
        font-size: 22px !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    
    .job-apply-banner p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
    }
    
    .job-apply-banner > div:last-child {
        flex-direction: column;
        gap: 15px !important;
    }
    
    .job-apply-banner .tf-btn,
    .job-back-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 25px;
        font-size: 14px;
    }
    
    /* Not Found Card */
    .job-not-found-card {
        padding: 35px 15px;
    }
    
    .job-not-found-icon {
        font-size: 50px;
        margin-bottom: 18px;
    }
    
    .job-not-found-card h2 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }
    
    .job-not-found-card p {
        font-size: 14px !important;
        margin-bottom: 30px !important;
    }
}

/* Extra Small ( 360px) */
@media (max-width: 360px) {
    .job-detail-title {
        font-size: 18px;
    }
    
    .job-section-box h3 {
        font-size: 16px;
    }
    
    .job-apply-banner h3 {
        font-size: 20px !important;
    }
    
    .benefit-pill-card h4 {
        font-size: 14px;
    }
}


/* App Checkbox - Alias for consistent class naming */
.app-checkbox {
    appearance: none;
    -webkit-appearance: none;
    margin-top: 2px;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #A1C2BD;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.app-checkbox:hover {
    background: rgba(161, 194, 189, 0.15);
    border-color: #E7F2EF;
    transform: scale(1.05);
}

.app-checkbox:checked {
    background: linear-gradient(135deg, #A1C2BD, #708993);
    border-color: #A1C2BD;
}

.app-checkbox:checked::after {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
}

.app-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(161, 194, 189, 0.3);
}

