body {
  font-family: 'Tajawal', 'Montserrat', Arial, sans-serif;
  color: #1e293b;
  margin: 0;
  direction: rtl;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(30,41,59,0.45) 0%, rgba(56,189,248,0.18) 100%), url('pics/Layer 2.png') no-repeat center center fixed;
  background-size: cover;
  filter: blur(6px) brightness(0.95);
  opacity: 0.93;
}
#root, .jobs-header, main, footer, .jobs-contact-section, .jobs-list-section, .jobs-benefits-section {
  position: relative;
  z-index: 1;
}
.jobs-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(30,41,59,0.06);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.jobs-logo {
  height: 54px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(30,41,59,0.07);
}
.jobs-nav a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 700;
  margin-left: 2rem;
  font-size: 1.1rem;
  transition: color 0.2s;
  padding: 0.3rem 1rem;
  border-radius: 18px;
}
.jobs-nav a.active, .jobs-nav a:hover {
  background: #38bdf8;
  color: #fff;
}
@media (max-width: 700px) {
  .jobs-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0.7rem;
  }
  .jobs-nav a {
    margin-left: 0.7rem;
    font-size: 1rem;
    padding: 0.3rem 0.7rem;
  }
}
.jobs-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: none;
  position: relative;
  z-index: 1;
  padding: 3.5rem 1.2rem 2.5rem 1.2rem;
  margin-bottom: 2.5rem;
}
.jobs-hero-card {
  background: rgba(255,255,255,0.18);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(30,41,59,0.18), 0 0 0 1.5px rgba(56,189,248,0.10);
  backdrop-filter: blur(18px);
  border: 1.5px solid rgba(56,189,248,0.13);
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero-logo-deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-40%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 60% 40%, #38bdf8 0%, #0ea5e9 60%, transparent 100%);
  opacity: 0.18;
  z-index: 0;
  filter: blur(8px);
}
.animated-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  box-shadow: 0 4px 32px rgba(56,189,248,0.18);
  margin-bottom: 1.2rem;
  background: #fff;
  object-fit: cover;
  position: relative;
  z-index: 2;
  animation: heroLogoFloat 3.5s ease-in-out infinite;
  transition: transform 0.3s;
}
.animated-logo:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 40px rgba(56,189,248,0.25);
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.04); }
}
.jobs-hero-card h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(56,189,248,0.07);
}
.jobs-hero-card p {
  font-size: 1.25rem;
  font-weight: 700;
  color: #334155;
  margin: 0 auto;
  max-width: 420px;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(56,189,248,0.04);
}
@media (max-width: 600px) {
  .jobs-hero-card {
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    max-width: 98vw;
  }
  .jobs-hero-card h1 {
    font-size: 1.5rem;
  }
  .animated-logo {
    width: 80px;
    height: 80px;
  }
  .hero-logo-deco {
    width: 110px;
    height: 110px;
  }
}
.jobs-list-section {
  max-width: 1100px;
  margin: 0 auto 2.5rem auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
}
.jobs-list-section h2 {
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(56,189,248,0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(56,189,248,0.15), 0 0 0 1px rgba(255,255,255,0.2);
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.jobs-list-section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(56,189,248,0.3);
}
.jobs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.job-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(56,189,248,0.12), 0 0 0 1px rgba(255,255,255,0.2);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(56,189,248,0.08);
}
.job-card:hover {
  box-shadow: 0 12px 40px rgba(56,189,248,0.2), 0 0 0 1px rgba(56,189,248,0.15);
  transform: translateY(-8px) scale(1.02);
  border: 2px solid rgba(56,189,248,0.2);
  background: rgba(255, 255, 255, 0.98);
}
.job-card:focus-within, .job-card:active {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(56,189,248,0.15);
}
.job-number {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(56,189,248,0.25), 0 0 0 1px rgba(255,255,255,0.1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.job-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}
.job-info h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.job-info p {
  color: #475569;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.apply-btn {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  color: #fff;
  padding: 0.7rem 2rem;
  border-radius: 28px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(56,189,248,0.2), 0 0 0 1px rgba(255,255,255,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.apply-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.apply-btn:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  box-shadow: 0 6px 20px rgba(56,189,248,0.3), 0 0 0 1px rgba(255,255,255,0.2);
  transform: translateY(-3px) scale(1.05);
}

.apply-btn:hover::before {
  left: 100%;
}
.apply-btn:focus, .apply-btn:active {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(56,189,248,0.15);
}
.jobs-benefits-section {
  background: #e0f7fa;
  border-radius: 18px;
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(30,41,59,0.04);
}
.jobs-benefits-section h2 {
  color: #1e293b;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.jobs-benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.jobs-benefits-list li {
  background: #fff;
  color: #0ea5e9;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 2px 8px rgba(56,189,248,0.07);
}
.jobs-benefits-list li i {
  margin-left: 0.5rem;
  color: #0ea5e9;
  font-size: 1.2rem;
}
.jobs-contact-section {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(56,189,248,0.15), 0 0 0 1px rgba(255,255,255,0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jobs-contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.05) 0%, rgba(14,165,233,0.05) 100%);
  z-index: -1;
}

.jobs-contact-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(56,189,248,0.03) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
  z-index: -1;
}
.jobs-contact-section h2 {
  color: #1e293b;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.form-intro {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
/* Job Application Form Styles */
.job-application-form {
  max-width: 800px;
  margin: 0 auto;
  text-align: right;
  position: relative;
  z-index: 2;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-group label {
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.form-group label::before {
  content: '';
  width: 4px;
  height: 16px;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  border-radius: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.2rem;
  border: 2px solid rgba(226,232,240,0.8);
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: rgba(248,250,252,0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #38bdf8;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.15), 0 4px 16px rgba(56,189,248,0.1);
  transform: translateY(-2px);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
/* File Upload Styling */
.file-upload-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.file-upload-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  color: #64748b;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.file-upload-label:hover {
  border-color: #38bdf8;
  background: #f0f9ff;
  color: #0ea5e9;
}
.file-upload-label i {
  font-size: 1.5rem;
}
/* Checkbox Styling */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-weight: 500;
  color: #374151;
}
.checkbox-label input[type="checkbox"] {
  display: none;
}
.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  background: #fff;
}
.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #38bdf8;
  border-color: #38bdf8;
}
.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}
/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.submit-btn,
.reset-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
}
.submit-btn {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(56,189,248,0.25), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}
.submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(56,189,248,0.35), 0 0 0 1px rgba(255,255,255,0.2);
}
.reset-btn {
  background: rgba(241,245,249,0.8);
  color: #64748b;
  border: 2px solid rgba(226,232,240,0.8);
  backdrop-filter: blur(10px);
}
.reset-btn:hover {
  background: #e2e8f0;
  color: #475569;
  transform: translateY(-2px);
}
/* Contact Info */
.contact-info {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}
.contact-info p {
  color: #64748b;
  margin-bottom: 1rem;
}
.contact-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f0f9ff;
}
.contact-link:hover {
  background: #38bdf8;
  color: #fff;
  transform: translateY(-2px);
}
/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-actions {
    flex-direction: column;
    align-items: center;
  }
  .submit-btn,
  .reset-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .contact-links {
    flex-direction: column;
    align-items: center;
  }
  .contact-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .jobs-contact-section {
    padding: 1.5rem 1rem;
    margin: 1.5rem auto;
  }
  .jobs-contact-section h2 {
    font-size: 1.5rem;
  }
  .form-intro {
    font-size: 1rem;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
.invisible {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.visible {
  opacity: 1;
  transform: translateY(0);
}
.job-number i {
  font-size: 2rem;
  color: #0ea5e9;
  background: #e0f7fa;
  border-radius: 50%;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(56,189,248,0.07);
}
.jobs-footer {
  text-align: center;
  padding: 2rem 0;
  background: #1e293b;
  color: #fff;
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jobs-footer p {
  margin: 0;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
/* Hamburger menu styles */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(56,189,248,0.13);
  box-shadow: 0 4px 16px rgba(56,189,248,0.13);
  border-radius: 16px;
  cursor: pointer;
  z-index: 1001;
  margin-left: 1rem;
  margin-right: 0;
  position: absolute;
  left: 0.5rem;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  transition: box-shadow 0.2s, background 0.2s, border 0.2s;
}
.mobile-menu-btn:hover, .mobile-menu-btn:focus {
  background: rgba(56,189,248,0.18);
  box-shadow: 0 8px 32px rgba(56,189,248,0.18);
  border: 1.5px solid #38bdf8;
}
.mobile-menu-btn span {
  display: block;
  width: 32px;
  height: 4px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.5);
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 900px) {
  .jobs-nav {
    display: flex !important;
    flex-direction: column;
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    text-align: right;
  }
} 