:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #f8f9fa;
  --dark-color: #2c3e50;
  --success-color: #27ae60;
  --gold-color: #f1c40f;
}

body {
  font-family: 'Tajawal', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
  color: #333;
  line-height: 1.8;
}

/* Navigation */
.navbar {
  background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  height: 80px;
  font-size: 20px !important;
  font-weight: bold;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem !important;
  color: white !important;
}
.fas{
  margin-left: 10px !important;
}


.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
  margin: 0 10px;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.nav-link:hover {
  color: white !important;
  transform: translateY(-3px);
}

.apply-btn {
  background: var(--accent-color);
  border-radius: 30px;
  padding: 8px 25px;
  font-weight: 700;
  transition: all 0.3s;
}

.apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.9)),
    url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
  padding: 120px 0 100px;
  color: white;
  text-align: center;
  margin-bottom: 70px;
  border-radius: 0 0 50px 50px;
}

.salary-badge {
  background: linear-gradient(to right, var(--gold-color), #e67e22);
  color: var(--dark-color);
  font-weight: bold;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  display: inline-block;
  margin: 25px 0;
  font-size: 1.4rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Content Sections */
.section {
  padding: 80px 0;
}

.section-title {
  position: relative;
  margin-bottom: 50px;
  color: var(--primary-color);
  font-weight: 800;
  text-align: center;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  height: 100%;
}

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

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 25px;
}

.card-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-color), #1abc9c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.icon-box i {
  font-size: 30px;
  color: white;
}

.story-section {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  padding: 80px 0;
  border-radius: 50px;
  margin: 50px 0;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 30px;
}

.testimonial:after {
  content: '';
  position: absolute;
  top: -30px;
  left: 30px;
  font-size: 120px;
  color: var(--secondary-color);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  margin-bottom: 20px;
}

.highlight {
  background: linear-gradient(
    120deg,
    rgba(52, 152, 219, 0.1),
    rgba(46, 204, 113, 0.1)
  );
  border-left: 4px solid var(--secondary-color);
  padding: 25px;
  border-radius: 0 15px 15px 0;
  margin: 40px 0;
}

/* Timeline */
.timeline {
  position: relative;
  margin: 50px 0;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: -50%;
}

.timeline-item:after {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary-color);
  border: 4px solid white;
}

.timeline-item:nth-child(odd):after {
  right: -12px;
}

.timeline-item:nth-child(even):after {
  left: -12px;
}

/* Form Section */
.form-section {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--dark-color)
  );
  color: white;
  padding: 80px 0;
  border-radius: 50px 50px 0 0;
}

.form-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  padding: 40px;
  color: var(--dark-color);
}

.form-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
}

.form-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
}

.form-control {
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #e0e6ed;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.btn-submit {
  background: linear-gradient(to right, var(--accent-color), #c0392b);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s;
  width: 100%;
  margin-top: 20px;
}

.btn-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.success-message {
  display: none;
  background: linear-gradient(to right, var(--success-color), #2ecc71);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 30px;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 40px 0 20px;
  text-align: center;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 10px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 60px 0;
  }

  .timeline:before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
    left: 0 !important;
  }

  .timeline-item:nth-child(odd):after,
  .timeline-item:nth-child(even):after {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }
}
