        /* =========================
   CAREER SECTION
========================= */

        .career-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, #f8fafc, #ffffff);
        }

        /* =========================
   SECTION HEADING
========================= */

        .section-subtitle {
            color: #2295FF;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #0f172a;
        }

        .section-desc {
            color: #64748b;
            max-width: 650px;
            margin: auto;
        }

        /* =========================
   JOB CARD
========================= */

        .career-job-card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #edf2f7;
            box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
            transition: all .4s ease;
            height: 100%;
            position: relative;
        }

        .career-job-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #2295FF, #00D4FF);
        }

        .career-job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
        }

        .job-content {
            padding: 35px;
        }

        .job-badge {
            border-radius: 50px;
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 600;
        }

        .job-title {
            font-size: 20px;
            margin: 20px 0 10px;
            color: #0f172a;
        }

        .job-location {
            color: #2295FF;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .job-tags span {
            background: #f1f5f9;
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 13px;
            color: #475569;
        }

        /* =========================
   BUTTON
========================= */

        .btn-career {
            display: inline-block;
            border: none;
            background: linear-gradient(135deg, #2295FF, #0077ff);
            color: #fff;
            padding: 14px 28px;
            border-radius: 12px;
            transition: .4s;
            font-weight: 600;
        }

        .btn-career:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(34, 149, 255, .35);
        }

        /* =========================
   GENERAL CAREER BOX
========================= */

        .general-career-box {
            margin-top: 100px;
            border-radius: 30px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
        }

        /* LEFT */

        .general-career-left {
            background:
                radial-gradient(circle at top right,
                    rgba(34, 149, 255, .25),
                    transparent 35%),
                linear-gradient(135deg, #0f172a, #111827);

            padding: 60px;
            color: #fff;
            height: 100%;
        }

        .general-career-left h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
        }

        .general-career-left p {
            color: rgba(255, 255, 255, .75);
            line-height: 1.8;
        }

        .career-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .career-feature i {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #2295FF;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* STATS */

        .career-stats {
            display: flex;
            gap: 25px;
            margin-top: 40px;
        }

        .career-stats h4 {
            color: #fff;
            margin-bottom: 0;
        }

        .career-stats span {
            color: rgba(255, 255, 255, .65);
            font-size: 13px;
        }

        /* CONTACT CARD */

        .career-contact-card {
            margin-top: 40px;
            padding: 25px;
            border-radius: 15px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .08);
        }

        /* RIGHT FORM */

        .general-career-form {
            padding: 60px;
            position: relative;
        }

        .general-career-form h3 {
            margin-bottom: 30px;
        }

        .general-career-form .form-control {
            height: 58px;
            border-radius: 12px;
            border: 2px solid #edf2f7;
            background: #fafcff;
        }

        .general-career-form textarea.form-control {
            height: 150px;
            padding-top: 15px;
        }

        .general-career-form .form-control:focus {
            box-shadow: none;
            border-color: #2295FF;
            background: #fff;
        }

        /* UPLOAD BOX */

        .upload-box {
            text-align: center;
            border: 2px dashed #2295FF;
            border-radius: 15px;
            background: #f8fbff;
            padding: 30px;
        }

        .upload-box i {
            font-size: 42px;
            color: #2295FF;
            margin-bottom: 15px;
        }

        /* RESPONSIVE */

        @media(max-width:991px) {

            .general-career-left,
            .general-career-form {
                padding: 35px;
            }

            .section-title {
                font-size: 22px;
            }

            .general-career-left h2 {
                font-size: 22px;
            }

        }