
    .unick {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }

    .unick-image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .unick-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .unick-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 50px;
        color: #fff;
        background: rgba(0,0,0,0.3);
    }

    .unick-text {
        max-width: 60%;
    }

    .unick-text h1 {
        font-size: 64px;
        font-weight: 700;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }


    .form-control {
        background-color: #ffebee;
        border: 1px solid #ddd;
    }
    .job-box {
        background-color: #8dd0ff;
        padding: 10px;
        margin-bottom: 15px;
        border-radius: 3px;
    }
    .job-requirements {
        background-color: #f5f5f5;
        padding: 15px;
        margin-bottom: 15px;
    }
    .info-bar {
        background-color: #0088cc;
        color: white;
        padding: 20px 0;
        margin-top: 30px;
    }
    .upload-btn {
        background-color: #0088cc;
        color: white;
        padding: 8px 20px;
        border: none;
        cursor: pointer;
    }
    .submit-btn {
        background-color: #0088cc;
        color: white;
        padding: 10px 40px;
        border: none;
        cursor: pointer;
        font-size: 18px;
    }
    .contact-section {
        margin-top: 50px;
        text-align: center;
    }
    .contact-header {
        color: #0088cc;
        margin-bottom: 30px;
    }
    .contact-box {
        margin-bottom: 20px;
    }
    /* Added styles for file upload */
    .file-upload {
        position: relative;
        display: inline-block;
    }
    .file-upload input[type="file"] {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }
    .selected-file {
        margin-top: 10px;
        font-style: italic;
    }
    /* Feedback styles */
    .feedback {
        padding: 15px;
        margin-top: 20px;
        border-radius: 5px;
        display: none;
    }
    .success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    .error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
