body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
        }

        .container {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .container1 {
            width: 100%;
            margin: 0 auto;
            padding: 0 100px;
            box-sizing: border-box;
            background-color: #fffffff0;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col-12, .col-md-8, .col-md-4, .col-sm-6, .col-lg-10, .col-md-6 {
            padding: 0 15px;
            box-sizing: border-box;
        }

        .col-12 { width: 100%; }
        .col-md-8 { width: 66.666667%; }
        .col-md-4 { width: 33.333333%; }
        .col-sm-6 { width: 50%; }
        .col-lg-10 { width: 83.333333%; }
        .col-md-6 { width: 33.33%; }

        @media (max-width: 768px) {
            .col-md-8, .col-md-4, .col-sm-6, .col-md-6 {
                width: 100%;
            }
        }

        .text-center { text-align: center; }
        .text-muted { color: #6b7280; }
        .text-dark { color: #1f2937; }
        .text-primary { color: #1e40af; }

        .mb-3 { margin-bottom: 1rem; }
        .mb-4 { margin-bottom: 1.5rem; }
        .mb-5 { margin-bottom: 3rem; }
        .mt-5 { margin-top: 3rem; }
        .ms-1 { margin-left: 0.25rem; }
        .me-2 { margin-right: 0.5rem; }
        .mt-4 { margin-top: 1.5rem; }
        .pt-3 { padding-top: 1rem; }

        .py-5 { padding-top: 3rem; padding-bottom: 3rem; }

        .fw-bold { font-weight: 600; }

        .d-flex { display: flex; }
        .flex-column { flex-direction: column; }
        .justify-content-center { justify-content: center; }
        .justify-content-between { justify-content: space-between; }
        .align-items-start { align-items: flex-start; }
        .h-100 { height: 100%; }

        .card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card-body {
            width: 422px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-title {
            font-size: 1.5rem;
            margin: 0 0 1rem 0;
        }

        .badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* Career Page Specific Styles */
        .career-hero {
            
            
            
            
            
            
            background: linear-gradient(to bottom, #ffffff29 0%, #c6d2ff 100%), url('../images/team.png');
            color: white;
            padding: 100px 0 80px !important;
            text-align: center;
            min-height: 100vh;
            background-size: cover;
        }

        .intro {
            margin-top: 10rem;
        }

        .job-offers {
            background-color: #f1f5f9c2;
        }
        .job-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            /* margin-bottom: 30px; */
            margin: 20px;
        }

        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .department-badge {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 20px;
        }

        .accommodation { background-color: #dbeafe; color: #1e40af; }
        .guest-services { background-color: #f0f9ff; color: #0369a1; }
        .event-services { background-color: #fef3c7; color: #92400e; }
        .administrative { background-color: #f3e8ff; color: #7e22ce; }

        .job-meta {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .job-description {
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .apply-btn {
            background: linear-gradient(to right, #3498db, #2c3e50);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
            cursor: pointer;
            display: block;
            margin-top: 1rem;
        }

        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
        }

        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            margin-bottom: 40px;
            list-style: none;
            padding: 0;
        }

        .page-item {
            margin: 0 4px;
        }

        .page-link {
            background-color: #f2f2f2ff;
            display: block;
            border: none;
            color: #4b5563;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            box-shadow: 5px 5px 5px #7878785d;
            /* background: none; */
            cursor: pointer;
        }

        .page-item.active .page-link {
            background-color: #1e40af;
            color: white;
        }

        .page-link:hover {
            background-color: #e5e7eb;
            color: #1e40af;
        }

        /* Job Details Section */
        .job-details {
            border-top: 1px solid #e5e7eb;
            padding-top: 20px;
            margin-top: 20px;
        }

        .detail-item {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }

        .detail-icon {
            color: #1e40af;
            margin-right: 10px;
            margin-top: 5px;
            min-width: 16px;
        }

        .detail-content {
            flex: 1;
        }

        .detail-label {
            font-weight: 600;
            color: #374151;
            font-size: 0.875rem;
            margin-bottom: 2px;
        }

        .detail-value {
            color: #6b7280;
            font-size: 0.875rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Apply Button Section */
        .apply-section {
            border-top: 1px solid #e5e7eb;
            margin-top: auto;
            padding-top: 1.5rem;
        }

        /* Footer Styles */
        .footer {
            background-color: #1f2937;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px 2rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            padding: 0 15px;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: #374151;
            border-radius: 50%;
            color: white;
            text-decoration: none;
        }

        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 4px 0 0 4px;
        }

        .newsletter-form button {
            background-color: #1e40af;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
        }

        /* RTL Support */
        [dir="rtl"] .detail-icon {
            margin-right: 0;
            margin-left: 10px;
        }

        [dir="rtl"] .me-2 {
            margin-right: 0;
            margin-left: 0.5rem;
        }

        [dir="rtl"] .ms-1 {
            margin-left: 0;
            margin-right: 0.25rem;
        }
        .error-message {
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }
        /* Success and Error Message Styles */
        .alert {
            padding: 12px 16px;
            border-radius: 8px;
            margin: 20px 0;
            font-weight: 500;
        }

        .alert-success {
            background-color: #d1fae5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }

        .alert-error {
            background-color: #fee2e2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }

        .message-container {

            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            max-width: 400px;
            width: 100%;
            
            margin: 0 auto;
            padding: 0 20px;
        }

        /* NEW: Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .file-upload-container {
            width: 100%;
        }

        .file-upload-area {
            border: 2px dashed #d1d5db;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            transition: all 0.3s ease;
            background-color: #f9fafb;
            cursor: pointer;
            margin-bottom: 1rem;
        }

        .file-upload-area:hover {
            border-color: #1e40af;
            background-color: #f0f9ff;
        }

        .file-upload-area.dragover {
            border-color: #1e40af;
            background-color: #e0f2fe;
        }

        .upload-icon {
            font-size: 2.5rem;
            color: #9ca3af;
            transition: color 0.3s ease;
        }

        .file-upload-area:hover .upload-icon {
            color: #1e40af;
        }

        .upload-text {
            margin-bottom: 0.5rem;
        }

        .upload-title {
            display: block;
            font-weight: 500;
            color: #455061ff;
            font-size: 15px;
        }

        .upload-subtitle {
            display: block;
            font-size: 0.875rem;
            color: #6b7280;
        }

        .browse-btn {
            background-color: #1e40af;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .browse-btn:hover {
            background-color: #3730a3;
        }

        .file-input {
            display: none;
        }

        .file-info {
            padding: 12px;
            background-color: #f3f4f6;
            border-radius: 6px;
            display: none;
            align-items: center;
            justify-content: space-between;
            margin-top: 0.5rem;
        }

        .file-info.show {
            display: flex;
        }

        .file-details {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .file-icon {
            color: #ef4444;
            margin-right: 10px;
            font-size: 1.25rem;
        }

        .file-name {
            font-weight: 500;
            color: #1f2937;
            margin-right: 8px;
        }

        .file-size {
            color: #6b7280;
            font-size: 0.875rem;
        }

        .remove-file {
            background: none;
            border: none;
            color: #6b7280;
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .remove-file:hover {
            color: #ef4444;
            background-color: #fee2e2;
        }

        /* NEW: Read More/Less Button Styles */
        .read-more-btn {
            background: none;
            border: none;
            color: #1e40af;
            cursor: pointer;
            font-weight: 500;
            padding: 4px 0;
            margin-top: 8px;
            text-decoration: underline;
            font-size: 0.875rem;
        }

        .read-more-btn:hover {
            color: #3730a3;
        }

        .job-description-truncated {
            display: block;
        }

        .job-description-full {
            display: none;
        }

        /* RTL Support for new form elements */
        [dir="rtl"] .file-icon {
            margin-right: 0;
            margin-left: 10px;
        }

        [dir="rtl"] .remove-file {
            margin-right: auto;
            margin-left: 0;
        }

        [dir="rtl"] .file-name {
            margin-right: 0;
            margin-left: 8px;
        }
        .read-more-btn {
            text-decoration:none;
        }

        .social-links {
    display: flex;
    position: fixed;
    left: 30px;
    bottom: 100px;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #4c79da;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}