.banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.breadcrumb span {
  color: var(--accent-gold);
  margin-left: 5px;
}

/* Capabilities Grid Section */
.capabilities-grid {
  background: var(--light-color);
}

.capability-card {
  background: var(--light-color);
  border-radius: 10px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


.card-image {
  height: 150px;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.capability-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.capability-card:hover .card-image {
  transform: scale(1.05);
}

.card-content h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.card-content p {
  color: #0c0c0c;
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Manufacturing Process Section */
.manufacturing-process {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.manufacturing-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary); /* يمكنك استبدالها بـ var(--gradient-overlay) لو معرف */
  z-index: 1;
  pointer-events: none;
}


.manufacturing-process .container {
  position: relative;
  z-index: 2;
}

.manufacturing-process .section-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.manufacturing-process .section-title {
  color: var(--light-color);
}

.manufacturing-process .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.process-timeline {
  margin-top: 50px;
}

.process-step {
  display: flex;
  align-items: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 1.5rem;
  font-weight: 800;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--light-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}