:root {
  --orange: #f7931d;
  --white: #fefefe;
  --black: #2d2f39;
  --grey: #e6e7e8;
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.logo {
  width: 90px;
}

.description {
  text-align: left;
}

.description h1 {
  font-weight: bold;
  text-transform: uppercase;
}

.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;
}
.title{

width: 50%;
align-items: center;
vertical-align: middle;
display: flex;
background-color:black ;

}

h5{
color: var(--orange) !important;
}
p{

  color: var(--black) !important;
}

/* Add custom CSS here */
.container {
  max-width: 900px; /* Adjust container width as needed */
}

img {
  max-width: 100%; /* Ensure images scale responsively */
  height: auto;
}
header {
  background-color: #f2f2f2; /* Light gray background */
  text-align: center; /* Center the text */
  padding: 20px; /* Add padding for spacing */
}

h1 {
  font-family: Arial, sans-serif;
  font-size: 36px;
  color: #333;
}

.section-header h3 {
  font-size: 36px;
  color: var(--orange);
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}


#clients {
  padding: 60px 0;
  background-color: var(--grey);
  
}
#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
  margin: 5px;
  border-radius: 15px !important;

}



.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;
  }
}




.custom-card {
  border: none;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px !important;
}
.custom-card img {
  max-width: 50%;
  height: auto;
}
.MehadaTitle{

color: var(--orange) !important;

}