.jumbotron-section {
    height: 600px;
}

.jumbotron {
    padding-top: 150px;
}

.jumbotron img {
  z-index: 1;
}

.jumbotron h1,
.jumbotron button {
  position: relative;
  z-index: 2; /* keep text/buttons above */
}

.who-we-are-background {
  position: relative;
  margin-top: 100px;
  overflow: hidden;
  background: none;
}

.who-we-are-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://redcoral.sa/consultancy/wp-content/uploads/2025/10/redcoral3-scaled.jpg");
  background-size: cover;
  background-position: center 75%;
  background-repeat: no-repeat;
  
  filter: grayscale(20%);
  opacity: 0.2;
  mix-blend-mode: luminosity;
  z-index: 0;
}

.who-we-are-background > * {
  position: relative;
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
}

/* Optional: ensure both sides stretch evenly */
#about .row.align-items-stretch {
  display: flex;
  align-items: stretch;
}

.service-number {
  display: inline-block;
  border: 2px solid var(--color-black);
  padding: 4px 10px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.service-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.outer-box {
    min-height: 150px;
    background-color: var(--color-tertiary);
    border-radius: 15px;
    border: 2px solid var(--color-secondary-2) !important;
}

@media (max-width: 767.98px) {
  .jumbotron img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 70%;
    opacity: 0.2;
  }
}