/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jun 12, 2025, 2:46:38 PM
    Author     : Baha.Alshurfat
*/

/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jun 12, 2025, 2:02:08 PM
    Author     : Baha.Alshurfat
*/
/* contact-modal.css */

/* خلفية المودال */
#jobModal.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* محتوى المودال */
#jobModal .modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* زر الإغلاق */
#jobModal .close-btn {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

/* عنوان القسم */
#jobModal .tm-section-header {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #cc9900;
    font-family: 'Tajawal', sans-serif;
}

/* الخط الفاصل */
#jobModal .tm-hr {
    width: 50px;
    height: 3px;
    background-color: #cc9900;
    margin: 10px auto 30px auto;
    border: none;
}

/* تنسيق النموذج */
#jobModal .tm-contact-form .form-group {
    margin-bottom: 20px;
}

#jobModal .tm-contact-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Tajawal', sans-serif;
    box-sizing: border-box;
}

#jobModal .tm-contact-form textarea.form-control {
    resize: none;
}

/* زر الإرسال */
#jobModal .tm-more-button {
    background-color: #cc9900;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#jobModal .tm-more-button:hover {
    background-color: #b8860b;
}



