:root {
        --primary-color: #664dc9;
        --secondary-color: #8b75d7;
        --text-dark: #1f2937;
        --text-muted: #6b7280;
        --border-color: #e5e7eb; 
        --success-green: #10b981;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'DM Sans', 'Segoe UI', sans-serif;
        background: linear-gradient(135deg, #f8f9ff 0%, #fdfbff 100%);
        color: var(--text-dark);
        line-height: 1.6;
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        padding: 80px 20px 140px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .hero-section::before,
    .hero-section::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
    }

    .hero-section::before {
        top: -50%;
        left: -10%;
        width: 350px;
        height: 350px;
    }

    .hero-section::after {
        bottom: -30%;
        right: -5%;
        width: 300px;
        height: 300px;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1000px;  
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.0rem;
        font-weight: 600;
        margin-bottom: 20px;
        line-height: 1.0;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .hero-subtitle {
        font-size: 1.3rem;
        opacity: 0.95;
        font-weight: 300;
        line-height: 1.6;
    }

    /* Form Container */
    .form-wrapper {
        max-width: 1200px;
        margin: -100px auto 60px;
        position: relative;
        z-index: 10;
        padding: 0 20px;
    }

    .form-container {
        background: white;
        border-radius: 20px;
        padding: 50px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    /* Job Title Section */
    .job-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 2px solid #f0f0f0;
    }

    .job-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    .job-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .job-badge {
        background: var(--secondary-color);
        color: white;
        padding: 6px 18px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .job-location {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--text-muted);
        margin-top: 15px;
        font-size: 1rem;
    }

    .job-location i {
        color: var(--primary-color);
    }

    /* Form Title */
    .form-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 30px;
        text-align: center;
    }

    /* Form Groups */
    .form-group {
        margin-bottom: 25px;
    }

    .form-label {
        display: block;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .marathi-label {
        display: block;
        font-size: 0.85rem;
        color: var(--text-muted);
        font-weight: 400;
        margin-top: 2px;
    }

    .required {
        color: #dc3545;
        margin-left: 3px;
    }

    .form-control {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid var(--border-color);
        border-radius: 10px;
        font-size: 0.95rem;
        color: var(--text-dark);
        background: #fafbfc;
        transition: all 0.3s ease;
        font-family: 'DM Sans', sans-serif;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        background: white;
        box-shadow: 0 0 0 3px rgba(102, 77, 201, 0.1);
    }

    .form-control::placeholder {
        color: var(--text-muted);
    }

    select.form-control {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23664dc9' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
    }

    textarea.form-control {
        min-height: 120px;
        resize: vertical;
    }

    /* Two Column Grid */
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* File Upload */
    .file-upload-wrapper {
        position: relative;
    }

    .file-input {
        display: none;
    }

    .file-label {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 18px;
        border: 2px dashed var(--border-color);
        border-radius: 10px;
        background: #fafbfc;
        cursor: pointer;
        transition: all 0.3s ease;
        gap: 10px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .file-label:hover {
        border-color: var(--primary-color);
        background: rgba(102, 77, 201, 0.05);
    }

    .file-label i {
        font-size: 1.3rem;
        color: var(--primary-color);
    }

    .file-name {
        margin-top: 10px;
        padding: 10px;
        background: #e8f4fd;
        border-radius: 8px;
        font-size: 0.85rem;
        color: var(--text-dark);
        display: none;
    }

    .file-name.show {
        display: block;
    }

    /* Skills Input */
    .skills-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px;
        border: 2px solid var(--border-color);
        border-radius: 10px;
        background: #fafbfc;
        min-height: 50px;
        align-items: center;
    }

    .skill-tag {
        background: var(--primary-color);
        color: white;
        padding: 6px 12px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
    }

    .skill-tag button {
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        font-size: 1rem;
        padding: 0;
        margin-left: 4px;
    }

    .skill-input-box {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        padding: 6px;
        font-size: 0.95rem;
        min-width: 150px;
    }

    /* Submit Button */
    .btn-submit {
        width: 100%;
        padding: 16px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        transition: all 0.3s ease;
        margin-top: 30px;
    }

    .btn-submit:hover {
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* Alerts */
    .alert {
        border-radius: 10px;
        border: none;
        padding: 15px 20px;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .alert-success {
        background: linear-gradient(135deg, #d4edda, #c3e6cb);
        color: #155724;
    }

    .alert-danger {
        background: linear-gradient(135deg, #f8d7da, #f5c6cb);
        color: #721c24;
    }

    .alert-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        opacity: 0.6;
        margin-left: auto;
    }

    .alert-close:hover {
        opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-section {
            padding: 60px 20px 120px;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .form-container {
            padding: 30px 20px;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 0px;
        }

        .job-title {
            font-size: 1.6rem;
        }
    }