@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;900&display=swap');

body {
    font-family: 'Tajawal', sans-serif;
    scroll-behavior: smooth;
    background-color: #f9fafb;
    color: #1f2937;
}

.gradient-bg {
    background: linear-gradient(135deg, #00357f 0%, #120d5b 100%);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Styles */
.hamburger {
    transition: all 0.3s ease;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1f2937;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.nav-mobile.open {
    max-height: 500px;
}

/* Footer Styles */
footer {
    background-color: #111827;
    color: white;
    padding: 4rem 0 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #00357f;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #002a66;
}

.btn-secondary {
    background-color: white;
    color: #00357f;
    border: 1px solid #00357f;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.gap-8 {
    gap: 2rem;
}

/*salesteam*/
 .contact-card {
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .whatsapp-btn {
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            background-color: #25D366;
            color: white;
        }

/*regestter*/
 .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
        }
        .input-field {
            transition: all 0.3s ease;
        }
        .input-field:focus-within {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
        }

          /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #00357f 0%, #120d5b 100%);
            color: white;
            padding: 5rem 1rem;
            text-align: center;
        }
        
        .cta-section h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.125rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn-outline-white {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.1);
        }

     /* Custom CSS for elements that can't be done with Tailwind */
        .user-avatar {
            background: linear-gradient(135deg, #00357f, #120d5b 100%);
        }
        .status-accepted { background-color: #dcfce7; color: #166534; }
        .status-pending { background-color: #fef9c3; color: #854d0e; }
        .status-rejected { background-color: #fee2e2; color: #991b1b; }
        .sidebar-menu li a.active { 
            background-color: #f3f4f6;
            border-right: 3px solid #00357f;
            color: #120d5b;
        }   
        
          /* CV Preview Styles */
        .cv-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .cv-name {
            font-size: 2rem;
            font-weight: bold;
            color: #1f2937;
        }
        
        .cv-title {
            font-size: 1.25rem;
            color: #4b5563;
            margin: 0.5rem 0;
        }
        
        .cv-contact {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            color: #6b7280;
            margin-top: 1rem;
        }
        
        .cv-section {
            margin-bottom: 2rem;
        }
        
        .cv-section-title {
            font-weight: bold;
            font-size: 1.25rem;
            color: #1f2937;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e5e7eb;
        }
        
        .cv-item {
            margin-bottom: 1.5rem;
        }
        
        .cv-item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        
        .cv-item-title {
            font-weight: bold;
            color: #1f2937;
        }
        
        .cv-item-date {
            color: #6b7280;
        }
        
        .cv-item-company {
            font-style: italic;
            color: #4b5563;
            margin-bottom: 0.5rem;
        }
        
        .cv-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .skill-tag {
            background: #e5e7eb;
            color: #1f2937;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
        }
  
        /* Job Apply Page Styles */
        .job-apply-header {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .job-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }
        
        .job-company {
            font-size: 1.25rem;
            color: #4b5563;
            margin-bottom: 1.5rem;
        }
        
        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .job-meta-item {
            display: flex;
            align-items: center;
            color: #6b7280;
        }
        
        .job-meta-item i {
            margin-left: 0.5rem;
            color: #4f46e5;
        }
        
        .apply-form-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 1024px) {
            .apply-form-container {
                grid-template-columns: 2fr 1fr;
            }
        }
        
        .apply-form, .job-sidebar {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 2rem;
        }
        
        .form-section {
            margin-bottom: 2rem;
            border-bottom: 1px solid #e5e7eb;
            padding-bottom: 1.5rem;
        }
        
        .section-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1.5rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        @media (min-width: 640px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.375rem;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }
        
        textarea.form-control {
            min-height: 120px;
        }
        
        .btn-apply {
            background: #4f46e5;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
            width: 100%;
            margin-top: 1rem;
        }
        
        .btn-apply:hover {
            background: #4338ca;
        }
        
        /* Sidebar Styles */
        .job-summary {
            margin-bottom: 2rem;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .summary-label {
            font-weight: 500;
            color: #4b5563;
        }
        
        .job-actions {
            margin-bottom: 2rem;
        }
        
        .btn-secondary {
            background: white;
            color: #4f46e5;
            border: 1px solid #4f46e5;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .btn-secondary:hover {
            background: #f3f4f6;
        }
        
        .similar-jobs {
            border-top: 1px solid #e5e7eb;
            padding-top: 1.5rem;
        }
        
        .similar-jobs h4 {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1rem;
        }
        
        .similar-job {
            padding: 1rem;
            border-radius: 0.375rem;
            background: #f9fafb;
            margin-bottom: 1rem;
        }
        
        .similar-job h5 {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }
        
        .similar-job p {
            color: #4b5563;
            font-size: 0.875rem;
            margin-bottom: 0.25rem;
        }
        
        .similar-job small {
            color: #6b7280;
            font-size: 0.75rem;
        }

          /* Contact Page Styles */
        .contact-hero {
            background: linear-gradient(rgba(0, 53, 127, 0.8), rgba(18, 13, 91, 0.8)), 
                        url('image/contact-bg.jpg') center/cover no-repeat;
            color: white;
            padding: 6rem 1rem;
            text-align: center;
        }
        
        .contact-content {
            padding: 4rem 1rem;
            background: #f9fafb;
        }
        
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 1024px) {
            .contact-container {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .contact-info, .contact-form {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 2rem;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .info-item i {
            font-size: 1.25rem;
            color: #00357f;
            margin-left: 1rem;
            margin-top: 0.25rem;
        }
        
        .info-text h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: #1f2937;
        }
        
        .info-text p {
            color: #6b7280;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4b5563;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #00357f;
            color: white;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.375rem;
        }
        
        .form-group textarea {
            min-height: 150px;
        }
        
        .submit-btn {
            background: #00357f;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
            width: 100%;
        }
        
        .submit-btn:hover {
            background: #00357f;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 4rem 1rem;
            background: white;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 1rem;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            cursor: pointer;
        }
        
        .faq-question span {
            font-weight: 600;
            color: #1f2937;
        }
        
        .faq-question i {
            color: #120d5b;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            color: #6b7280;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 1rem;
        }

          /* Jobs Page Styles */
        .jobs-page {
            padding: 2rem 1rem;
        }
        
        .jobs-page h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .search-filters {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .filter-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        @media (min-width: 768px) {
            .filter-row {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }
        
        .filter-group {
            margin-bottom: 1rem;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
        }
        
        .filter-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.375rem;
        }
        
        .search-btn {
            background: #00357f;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
            width: 100%;
        }
        
        .search-btn:hover {
            background: #00357f;
        }
        
        .jobs-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 1024px) {
            .jobs-list {
                grid-template-columns: 2fr 1fr;
            }
        }
        
        .job-results {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .job-card {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .job-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .job-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }
        
        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
            color: #6b7280;
            font-size: 0.875rem;
        }
        
        .job-meta span {
            display: flex;
            align-items: center;
        }
        
        .job-meta i {
            margin-left: 0.25rem;
            color: #00357f;
        }
        
        .job-card p {
            color: #6b7280;
            margin-bottom: 1.5rem;
        }
        
        .job-actions {
            display: flex;
            gap: 1rem;
        }
        
        .btn {
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background: #00357f;
            color: white;
            border: none;
        }
        
        .btn-primary:hover {
            background: #120d5b;
        }
        
        .btn-secondary {
            background: white;
            color: #00357f;
            border: 1px solid #00357f;
        }
        
        .btn-secondary:hover {
            background: #f3f4f6;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }
        
        .page-link {
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            color: #00357f;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        
        .page-link:hover, .page-link.active {
            background: #00357f;
            color: white;
            border-color: #00357f;
        }
        
        .job-sidebar {
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            align-self: flex-start;
        }
        
        .job-sidebar h4 {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .sidebar-job {
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #f3f4f6;
        }
        
        .sidebar-job h5 {
            font-size: 1rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }
        
        .sidebar-job p {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 0.5rem;
        }
        
        .sidebar-job a {
            font-size: 0.875rem;
            color: #00357f;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .sidebar-job a:hover {
            color: #00357f;
        }
        
        .job-sidebar ul {
            list-style-type: none;
            padding-right: 1rem;
        }
        
        .job-sidebar li {
            margin-bottom: 0.75rem;
            position: relative;
            padding-right: 1.25rem;
            color: #6b7280;
        }
        
        .job-sidebar li:before {
            content: "•";
            color: #00357f;
            position: absolute;
            right: 0;
        }