	
	/* Page Banner */
        .page-banner {
  
            background: url('../img/imgjobs.jpg') center/cover;
        }

     .parallax-2 {
    background-image: url('../img/parax3.jpg');
}   
		
				.nowayin {
	display:none;
}

	
	
	
/* Main container styling */
.job-container {
    display: flex;
    flex-direction: row-reverse; /* For RTL layout */
    gap: 2rem;
    margin: 30px 0;
}

/* Info/Image column styling */
.job-info-column {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.job-info-content {
    text-align: center;
}

.job-info-icon {
    font-size: 3.5rem;
    color: #8a2be2;
    margin-bottom: 1.5rem;
}

.job-info-title {
    color: #8a2be2;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.job-info-text {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: right;
}
			

.job-info-list {
    text-align: right;
    padding-right: 20px;
    margin-bottom: 2rem;
}
		
body.dark-mode .job-info-list {
    color: black;
    
}

.job-info-list li {
    margin-bottom: 0.8rem;
    position: relative;
}



.job-info-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.job-info-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Form column styling */
.job-form-column {
    flex: 1.2;
}

.card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: none;
    height: 100%;
}

.card-body {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.95);
}

/* Form Header Styling */
h5 {
    border-radius: 8px;
    padding: 15px !important;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 25px !important;
}

/* Form Structure */
.form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .form-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .full-width {
        grid-column: span 2;
    }
}

.form-section {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-right: 4px solid #8a2be2;
}

.form-section-title {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #8a2be2;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e6ea;
}

/* Form Elements Styling */
form {
    direction: rtl;
}

.form-group {
    margin-bottom: 1.2rem;
}

.noback {
    background-color: #f8f9fa;
    border: 1px solid #e2e6ea;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 100%;
}

.noback:focus {
    background-color: #fff;
    border-color: #8a2be2;
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
    outline: none;
}

/* Select Dropdown Styling */
select.noback {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a2be2' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-right: 15px;
}

/* Textarea Styling */
textarea.noback {
    min-height: 120px;
    resize: vertical;
}
		
		

/* Button Styling */
.form-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-primary {
    background-color: #8a2be2;
    border-color: #8a2be2;
}

.btn-primary:hover {
    background-color: #7329c4;
    border-color: #7329c4;
    transform: translateY(-2px);
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #bb2d3b;
    border-color: #bb2d3b;
    transform: translateY(-2px);
}

/* Form Labels and Structure */
.form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

body.dark-mode .form-control::placeholder {
    color: #fff;
    
}


/* Required Field Indicator */
.required-field::after {
    content: " *";
    color: #dc3545;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .job-container {
        flex-direction: column;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .form-buttons {
        flex-direction: column;
    }
}

/* Focus States for Accessibility */
.noback:focus {
    transform: scale(1.02);
}

/* Animation for Form Elements */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-control {
    animation: fadeIn 0.5s ease forwards;
}

/* Error styling for invalid fields */
.form-control:invalid {
    border-color: #dc3545;
}

.form-control:invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Success styling for valid fields */
.form-control:valid {
    border-color: #198754;
}
