
        /* Global Variables & Resets */
        :root {
            --brand-orange: #F36F21;
            --brand-dark: #121929;
            --brand-text: #4B5563;
            --bg-light: #FAFAFA;
            --bg-peach: #FFF5F0;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--brand-text);
        }

        /* --- Hero Section --- */
        .hero-section {
            position: relative;
            background-image: url('../img/gallery/carrer_hero.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 100px 0 150px 0;
            overflow: hidden;
            z-index: 1;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            /* background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 100%); */
            z-index: -1;
        }
        .hero-title {
            font-size: 5rem;
            font-weight: 800;
            color: var(--brand-dark);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        .hero-title span {
            color: var(--brand-orange);
        }
        .hero-desc {
            font-size: 1.7rem;
            font-weight: 400;
            line-height: 1.6;
            max-width: 800px;
            color: #e9eaed;
            margin-bottom: 2.5rem;
        }
        .hero-badges-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .hero-badge {
            background: #eaeaea;
            border-radius: 50px;
            padding: 8px 20px 8px 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            font-size: 1.4rem;
            font-weight: 600;
            width: 200px;
            color: var(--brand-dark);
        }
        .hero-badge .icon-circle {
            background: var(--brand-orange);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-bage-text {
            font-size: 1.4rem;
            line-height: 1.2;
            color: #535c66;
        }
        .hero-curve {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            z-index: 2;
        }

        /* --- Explore Banner --- */
        .explore-banner {
            background-color: var(--bg-peach);
            border-radius: 12px;
            padding: 30px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: -50px;
            position: relative;
            z-index: 5;
            box-shadow: 0 4px 20px rgba(243, 111, 33, 0.05);
        }
        .explore-banner-content {
            display: flex;
            align-items: center;
            gap: 30px;
            flex: 1;
        }
        .explore-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed #F8B48B;
            color: var(--brand-orange);
        }
        .explore-banner h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--brand-dark);
            margin: 0;
        }
        .explore-banner h3 span { color: var(--brand-orange); }
        .explore-banner p { margin: 0; font-size: 0.9rem; color: #6B7280; max-width: 400px; }
        
        /* Outline Button */
        .btn-outline-orange {
            border: 1px solid var(--brand-orange);
            color: var(--brand-orange);
            background: transparent;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline-orange:hover {
            background: var(--brand-orange);
            color: #fff !important;
            text-decoration: none;
        }

        /* --- Filter Tabs --- */
        .filter-section { margin-top: 30px; margin-bottom: 20px; }
        .filter-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            background: #fff;
            padding: 10px 20px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }
        .careerTabs {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            color: #4B5563;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            background: transparent;
        }
        .careerTabs:hover { color: var(--brand-orange); text-decoration: none; }
        .careerTabs.active {
            background-color: var(--brand-orange);
            color: #fff !important;
            box-shadow: 0 4px 10px rgba(243, 111, 33, 0.3);
        }
        .careerTabs.active svg path { fill: #fff; stroke: #fff; }
        .filter-divider { width: 1px; height: 24px; background-color: #E5E7EB; }

        /* --- Job Table/List --- */
        .job-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 15px;
        }
        .job-table thead th {
            padding: 0 20px 10px 20px;
            color: var(--brand-dark);
            font-weight: 600;
            font-size: 1.3rem;
            border-bottom: 1px solid #E5E7EB;
        }
        .job-table thead th svg { margin-right: 8px; color: var(--brand-orange); vertical-align: middle; }
        .job-table tbody tr {
            background: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .job-table tbody tr:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }
        .job-table tbody td {
            padding: 24px 20px;
            vertical-align: middle;
            border-top: 1px solid transparent;
            border-bottom: 1px solid transparent;
        }
        .job-table tbody td:first-child { border-left: 3px solid transparent; border-top-left-radius: 12px; border-bottom-left-radius: 12px; }
        .job-table tbody td:last-child { border-right: 1px solid transparent; border-top-right-radius: 12px; border-bottom-right-radius: 12px; }
        /* Add hover effect indicator line on the left */
        .job-table tbody tr:hover td:first-child { border-left-color: var(--brand-orange); }

        .job-title-container { display: flex; align-items: center; gap: 15px; }
        .job-list-icon {
            width: 48px; height: 48px;
            background: var(--bg-peach);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .job-title { font-size: 1.5rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 4px; display: block; }
        .job-badge {
            background: #FFF0E6;
            color: var(--brand-orange);
            font-size: 1.1rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            display: inline-block;
        }
        
        .job-location { font-weight: 600; color: var(--brand-dark); margin-bottom: 2px; }
        .job-state { font-size: 1.2rem; color: #6B7280; }

        /* Skills formatting */
        .skills-list { list-style: none; padding: 0; margin: 0; max-width: 280px;}
        .skills-list li { display: inline; font-size: 1.5rem; color: #4B5563; line-height: 1.5; }
        .skills-list li:not(:last-child)::after { content: ", "; }

        /* --- Bottom CTA Banner --- */
        .bottom-cta {
            background: linear-gradient(135deg, #4A5B7B 0%, #29344D 100%);
            border-radius: 16px;
            padding: 40px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(41, 52, 77, 0.2);
        }
        .cta-content { position: relative; z-index: 2; display: flex; align-items: center; gap: 20px; }
        .cta-icon {
            width: 60px; height: 60px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
        }
        .cta-text h4 { color: #fff; font-size: 1.4rem; font-weight: 700; margin-bottom: 5px; }
        .cta-text p { color: #D1D5DB; margin: 0; font-size: 0.95rem; }
        .btn-outline-white {
            position: relative; z-index: 2;
            border: 1px solid #fff; color: #fff; background: transparent;
            padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.85rem;
            text-transform: uppercase; transition: all 0.3s;
        }
        .btn-outline-white:hover { background: #fff; color: var(--brand-dark); text-decoration: none;}

        /* Responsive */
        @media (max-width: 991px) {
            .explore-banner { flex-direction: column; text-align: center; gap: 20px; }
            .explore-banner-content { flex-direction: column; text-align: center; }
            .bottom-cta { flex-direction: column; text-align: center; gap: 25px; }
            .cta-content { flex-direction: column; }
        }


    /* Main Modal Container */
    .career-modal-custom .modal-content {
        border-radius: 24px;
        border: none;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        overflow: hidden;
        height: 85vh; /* Gives a fixed height so the inside can scroll */
    }
    .career-modal-custom .modal-dialog {
        max-width: 1050px;
    }
    
    /* Left Sidebar */
    .c-modal-sidebar {
        background: linear-gradient(180deg, #FFFBF9 0%, #FFFFFF 100%);
        padding: 40px 0 40px 0; /* Top & Bottom padding only */
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        border-right: 1px solid #F3F4F6;
        overflow: hidden;
    }
    .c-sidebar-bg-line {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: 0;
        pointer-events: none;
    }
    .c-sidebar-content {
        position: relative;
        z-index: 1;
        padding: 0 40px;
    }
    .c-icon-box {
        width: 64px; height: 64px;
        border-radius: 50%;
        background: #FFF5F0;
        border: 2px solid #FFE4D6;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 24px;
        color: #F36F21;
    }
    .c-sidebar-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #121929;
        line-height: 1.2;
        margin-bottom: 0px;
    }
    .c-sidebar-title span { color: #F36F21; }
    .c-sidebar-title-line {
        width: 40px;
        height: 3px;
        background-color: #F36F21;
        margin-top: 18px;
        margin-bottom: 22px;
    }
    .c-sidebar-desc { color: #4B5563; font-size: 1rem; line-height: 1.6; padding-right: 10px; }
    
    /* Edge-to-Edge Background Image container */
    .c-sidebar-illustration-bg {
        width: 100%;
        flex-grow: 1; /* Automatically fills all available middle space */
        background-image: url('../img/gallery/modal_illustration.png');
        background-size: 100% auto; /* Forces edge-to-edge width */
        background-position: bottom center; /* Anchors the illustration perfectly to the bottom */
        background-repeat: no-repeat;
        margin-top: 20px;
        margin-bottom: 30px; /* Precise gap before the trust box */
        z-index: 1;
    }

    .c-trust-box-container {
        padding: 0 40px;
        position: relative;
        z-index: 2;
        margin-top: auto;
    }
    .c-trust-box {
        background: #FFF;
        border: 1px solid #FFE4D6;
        border-radius: 12px;
        padding: 20px;
        display: flex;
        gap: 15px;
        align-items: flex-start;
        box-shadow: 0 4px 15px rgba(243, 111, 33, 0.03);
    }
    .c-trust-icon {
        width: 45px; height: 45px;
        background: #FFF5F0; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: #F36F21; flex-shrink: 0;
    }
    
    /* Right Form Side */
    .c-modal-form-area { 
        padding: 40px 50px; 
        position: relative; 
        background: #fff;
        height: 100%;
        overflow-y: auto;
    }
    .c-close-btn {
        position: absolute;
        top: 20px; right: 20px;
        width: 40px; height: 40px;
        background: #F9FAFB;
        border: 1px solid #E5E7EB;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer; transition: all 0.2s;
        color: #4B5563; z-index: 10;
    }
    .c-close-btn:hover { background: #F3F4F6; color: #111827; }
    .c-form-header h2 { font-size: 1.75rem; font-weight: 700; color: #121929; margin-bottom: 8px; }
    .c-form-header h2 span { color: #F36F21; }
    .c-form-header p { color: #6B7280; font-size: 1.2rem; margin-bottom: 30px; }
    
    /* Inputs */
    .c-form-label { font-weight: 600; color: #111827; font-size: 1.2rem; margin-bottom: 8px; }
    .c-form-label span.req { color: #EF4444; }
    .c-input-wrapper { position: relative; }
    .c-input-icon {
        position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
        color: #F36F21; pointer-events: none;
    }
    .c-form-control {
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        padding: 12px 16px 12px 48px;
        width: 100%;
        font-size: 1.2rem;
        color: #111827;
        transition: all 0.2s;
    }
    .c-form-control::placeholder { color: #9CA3AF; }
    .c-form-control:focus { outline: none; border-color: #F36F21; box-shadow: 0 0 0 3px rgba(243,111,33,0.1); }
    
    /* Textarea */
    .c-textarea-wrapper .c-input-icon { top: 20px; transform: none; }
    .c-textarea { padding-top: 16px; padding-left: 48px; resize: none; border-radius: 8px; border: 1px solid #E5E7EB; width:100%; font-size:1.2rem;}
    .c-textarea:focus { outline: none; border-color: #F36F21; box-shadow: 0 0 0 3px rgba(243,111,33,0.1); }
    .c-char-count { position: absolute; bottom: 12px; right: 16px; font-size: 1rem; color: #9CA3AF; }
    
    /* Dropzone */
    .c-upload-zone {
        border: 1.5px dashed #F8B48B;
        background: #FFF9F5;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        height: 100%;
        min-height: 160px;
    }
    .c-upload-zone:hover { background: #FFF5F0; border-color: #F36F21; }
    .c-file-input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
    .c-upload-icon {
        width: 48px; height: 48px; background: #FFE4D6; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: #F36F21; margin-bottom: 12px;
    }
    .c-upload-text { font-weight: 600; color: #111827; font-size: 0.95rem; margin-bottom: 4px; }
    .c-upload-subtext { color: #6B7280; font-size: 0.8rem; }
    
    /* Badges */
    .c-badges-row { display: flex; gap: 15px; margin: 30px 0; flex-wrap: wrap; }
    .c-badge {
        display: flex; align-items: center; gap: 8px;
        padding: 10px 16px; border-radius: 8px; font-weight: 600; font-size: 0.85rem;
    }
    .c-badge-purple { background: #F4F0FC; color: #5B21B6; }
    .c-badge-orange { background: #FFF5F0; color: #C2410C; }
    .c-badge-green { background: #F0FDF4; color: #15803D; }
    
    /* Footer Buttons */
    .c-modal-footer { display: flex; justify-content: flex-end; gap: 15px; border-top: 1px solid #F3F4F6; padding-top: 20px; margin-top: auto;}
    .btn-cancel { background: #fff; border: 1px solid #E5E7EB; color: #374151; font-size: small; padding: 12px 24px; border-radius: 8px; transition: all 0.2s; }
    .btn-cancel:hover { background: #F9FAFB; }
    .btn-submit { background: linear-gradient(90deg, #F97316 0%, #EA580C 100%); border: none; color: white; font-size: small; padding: 12px 28px; border-radius: 8px; display: flex; align-items: center; gap: 8px; transition: all 0.2s; box-shadow: 0 4px 12px rgba(243, 111, 33, 0.3);}
    .btn-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 15px rgba(243, 111, 33, 0.4); }

