
        .career-section {
            overflow: hidden;
        }

        .career-wrapper {
            background: #fff;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
        }

        /* LEFT IMAGE SIDE */

        .career-image {
            position: relative;
            height: 100%;
            min-height: 850px;
        }

        .career-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, 0.7),
                    rgba(0, 0, 0, 0.2));
            display: flex;
            align-items: end;
            padding: 40px;
        }

        .overlay-content h2 {
            color: #fff;
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .overlay-content p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 0;
        }

        /* RIGHT FORM SIDE */

        .form-side {
            padding: 45px;
        }

        .form-title {
            font-size: 36px;
            font-weight: 700;
            color: #ff6600;
            margin-bottom: 15px;
        }

        .form-subtitle {
            color: #6c757d;
            margin-bottom: 35px;
        }

        .form-label {
            font-weight: 600;
            margin-bottom: 10px;
            color: #1d1d1d;
        }

        .form-control,
        .form-select {
            height: 45px;
            border-radius: 5px;
            border: 1px solid #dcdcdc;
            padding-left: 15px;
            font-size: 15px;
        }

        textarea.form-control {
            height: 130px;
            resize: none;
            padding-top: 15px;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, .15);
        }

        .upload-box {
            border: 2px dashed #ff6600;
            border-radius: 14px;
            padding: 5px;
            background: #f8fbff;
        }

        .upload-box input {
            border: none !important;
            box-shadow: none !important;
            height: auto;
        }

        .submit-btn {
            height: 45px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            background: linear-gradient(45deg, #ff6600, #ff6600);
            border: none;
            transition: 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
        }

        .input-icon {
            color: #ff6600;
            margin-right: 8px;
        }

        @media(max-width:991px) {

            .career-image {
                min-height: 400px;
            }

            .form-side {
                padding: 30px 20px;
            }

            .overlay-content h2 {
                font-size: 28px;
            }

            .form-title {
                font-size: 28px;
            }

        }