/* style.css */
body {
  font-family: 'Cairo', sans-serif;
  background-color: #ffffff;
  color: #333;
  scroll-behavior: smooth;
}

section {
  padding: 60px 0;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}
.navbar {
  font-family: 'Cairo', sans-serif;
}

.navbar-brand {
  font-size: 1.3rem;
  color: #fff;
}

.navbar-nav .nav-link {
  color: #ddd;
  margin-right: 10px;
  transition: 0.3s;
}
html {
  scroll-behavior: smooth;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff;
  font-weight: bold;
}
.job-card {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: right;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.job-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}

.header {
  background: url('../images/construction-workers-welding-night.webp') center center / cover no-repeat;
  padding: 60px 0;
  color: white;
  position: relative;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6); /* طبقة شفافة فوق الخلفية */
  z-index: 1;
}

.header .container {
  position: relative;
  z-index: 2;
}
.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-main {
  background-color: #007bff;
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.btn-main:hover {
  background-color: #0056b3;
}

footer {
  background: #f8f9fa;
  padding: 30px 0;
  font-size: 14px;
  color: #666;
}

form label {
  font-weight: 600;
}

form input, form textarea, form select {
  border-radius: 10px;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 1.8rem;
  }
}
