body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 25px;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
    text-align: right;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}


/* تنسيقات صفحة الخدمات */
.services-container {
    padding: 40px;
    text-align: center;
}

.services-container h1 {
    color: #333;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px; 
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-top: 0;
    color: #333;
    font-size: 20px;
}

.service-card p {
    color: #777;
    font-size: 14px;
}




.professionals-container {
    padding: 40px;
    text-align: center;
}

.professionals-container h1 {
    color: #333;
    margin-bottom: 40px;
}

.professional-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.professional-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.professional-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #007bff;
}

.professional-card h3 {
    margin: 10px 0;
    color: #333;
}

.professional-specialty {
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.rating .filled {
    color: #ffc107;
}

.rating span {
    color: #777;
    font-size: 14px;
    margin-right: 5px;
}

.view-profile-btn {
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-profile-btn:hover {
    background-color: #218838;
}

/* تنسيقات صفحة الملف الشخصي  */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

.profile-container {
    background-color: #ffffff;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.profile-header {
    background-color: #007bff; 
    color: #fff;
    padding: 50px 20px 20px;
    text-align: center;
    position: relative;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.profile-header h1 {
    margin: 10px 0 5px;
    font-size: 32px;
    font-weight: 600;
}

.profile-specialty {
    margin: 0;
    font-size: 20px;
    opacity: 0.9;
}

.rating {
    margin: 10px 0;
    font-size: 20px;
}

.rating .filled {
    color: #ffc107;
}

.review-count {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.profile-body {
    padding: 30px;
    text-align: right;
}

.bio-section h2, .reviews-section h2 {
    color: #007bff; 
    font-size: 24px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.bio-section p {
    color: #555;
}

.reviews-section {
    margin-top: 30px;
}

.review-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border-right: 5px solid #007bff; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.review-text {
    margin: 0 0 10px;
    color: #555;
    font-style: italic;
}

.review-author {
    margin: 0;
    color: #888;
    font-size: 14px;
    text-align: left;
}

.profile-actions {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.contact-btn, .video-call-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn {
    background-color: #007bff;
    color: #fff;
}

.contact-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-call-btn {
    background-color: #ffc107; 
    color: #333;
}

.video-call-btn:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* تنسيق لرابط "الدخول كضيف" */
.guest-link {
    margin-top: 15px;
    font-size: 14px;
}

.guest-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.guest-link a:hover {
    text-decoration: underline;
}
