:root {
  --orange: #f7931d;
  --white: #fefefe;
  --black: #2d2f39;
  --grey: #e6e7e8;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.logo {
  width: 90px;
}
.header-bg {
  position: relative;
  background-image: url("/photos/ourClients/construction-silhouette.jpg"); /* Add your background image path here */
  background-size: cover;
  background-position: center;
}

.header-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(
    0,
    0,
    0,
    0.5
  ); /* Adjust the rgba values to change the shading color and transparency */
  z-index: 1;
}

.header-bg .about-text {
  position: relative;
  z-index: 2;
}

.footer {
  background-color: #1a1a1a;
  padding: 20px 10px;
  bottom: 0;
  width: 100%;
  color: #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
}

.footer-left .footer-link {
  color: #ffffff;
  text-decoration: none;
  /* margin-right: 8px; */
}

.footer-left .footer-link:hover {
  text-decoration: underline;
}

.footer-icons {
  display: flex;
  align-items: center;
}
.footer-icons i {
color: var(--white) !important; 

}

.footer-icon {
  margin: 0 10px;
}

.footer-icon img {
  width: 20px;
  height: 20px;
}

.footer-right {
  font-size: 14px;
  color: #b3b3b3;
}

@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      text-align: center;
  }

  .footer-left,
  .footer-right {
      flex-direction: column;
      margin-bottom: 10px;
  }



  .footer-icons {
      margin-bottom: 10px;
  }
}

.card {
  border: none;
  margin: 10px 0;
  border-radius: 30px !important;
  background-color: var(--grey) !important;
}
.card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 30px !important;

}
.card-title {
  font-weight: bold;
}
.mission {
  color: var(--black) !important;
}
.MehadaTitle {
  color: var(--orange);
}
.about {
  color: var(--black) !important;
}
.vision {
  color: var(--orange) !important;
}
.flex-fill {
  flex: 1;
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
