<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial, sans-serif;
  }

/*-------------------------------------------------------navbar-----------------------------------------------------------------------------*/

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 130px;
  background-color: #FF4500;
  color: white;
  z-index: 9999; /* Ensure navbar is on top of other elements */
}

.navbar-brand {
  color: white;
  padding-left: 0px;
  padding-top: 0%;
  padding-bottom: 0%;
  margin-top: 0%;
  margin-bottom: 0%;
  border-color: #fff;
}

.nav-link {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.nav-link:hover {
  color: black;
  font-weight: bold;
}

.nav-link.active{
  color: black;
  font-size: 20px;
  font-weight: bold;
}



/* Custom CSS for the dropdown menu */
.dropdown-menu {
  background-color: #f8f9fa; /* Set the background color */
  border: 1px solid #ced4da; /* Set the border */
  border-radius: 5px; /* Add border radius */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Set the box shadow */
  padding: 10px; /* Add some padding */
}

.dropdown-menu .dropdown-item {
  color: #333; /* Set the text color */
  transition: background-color 0.3s ease; /* Add transition effect */
}

.dropdown-menu .dropdown-item:hover {
  background-color: #e9ecef; /* Set the background color on hover */
  color: #333; /* Set the text color on hover */
}

.btn {
  font-size: 20px;
  background-color: white;
  color: rgb(5, 97, 178);
  border-radius: 30px;
  font-weight: bold;
}

.btn:hover {
  background-color: rgb(5, 97, 178);
  color: white;
  border-radius: 30px;
  font-weight: bold;
}

.navbar-toggler .navbar-toggler-icon{
  width: 100%;
  height: auto;
}

@media (max-width: 768px)  {
  .navbar {
    height: fit-content;
  }
 
}
/*-------------------------------------------------------navbar-----------------------------------------------------------------------------*/


/*-------------------------------------------------------product-------------------------------------------------------------------------*/


.headings{
  text-align: center;
  color: #DD4B39;
  font-weight: bolder;
  margin: 150px 0 10px 0;
}

.headings h1 {
  font-size: 37px;
}

.heading{
  text-align: center;
  color: #DD4B39;
  font-weight: bolder;
  margin: 70px 0 10px 0;
}

.headings h2 {
  font-size: 37px;
}
@media screen and (max-width: 768px) {

  .headings h1{
      font-size: 30px;
    }

    .headings h2{
      font-size: 30px;
    }
}


.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 40px;
}

.card {
  width: calc(33.33% - 10px);
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}

.card h1 {
  margin: 0;
  font-size: 60px;
  
  color: #FF4500;
  font-weight: bolder;
}

.content {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.image-box {
  width: 150px;
  height: 80px;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  margin-left: 20px; /* Add margin to create space between h1 and image-box */
}

.image-box i {
  color: #FF4500;
}

.image-box h3 {
  color: #FFF;
}

.card p {
  margin-bottom: 0%;
  font-size: 14px;
  color: #000;
  font-weight: bold;
}

/* Add the curved background */
.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top right, #FFD700, transparent);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Media query for mobile devices with max-width 768px */
@media (max-width: 768px) {
  .card {
      width: 100%; /* Set width to 100% to stack cards in one column */
  }

  .card h1 {
    font-size: 45px;
  }

  .image-box img  {
      width: 100%;
      height: auto;
      margin-left: 0;
  }
}
/*-------------------------------------------------------product-------------------------------------------------------------------------*/


/*-------------------------------------------------------technology-------------------------------------------------------------------------*/


.image-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap; /* Allow images to wrap on smaller screens */
}

.image-container {
  position: relative; /* Required for pseudo-elements */
  text-align: center;
  flex-basis: calc(33.33% - 20px); /* Set initial width for larger screens */
  margin-bottom: 40px;
  margin-top: 20px;
  box-sizing: border-box;
  padding: 10px;
  transition: transform 0.3s ease-in-out; /* Add a transition for hover effect */
}

.image-container:hover {
  transform: scale(1.05); /* Scale up on hover */
}

.image-container::before {
  content: "";
  position: absolute;
  /*bottom: 0;*/
  left: 0;
  width: 100%;
  height: 50%; /* Half of the image-container's height */
  background: linear-gradient(to bottom, rgba(221, 75, 57, 0.5), rgba(221, 75, 57, 0));
  border-radius: 50% 50% 0 0; /* Round the bottom corners of the pseudo-element */
}

.image-container img {
  position: relative;
  width: 250px;
  height: 250px;
  border: 1px solid #ddd;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out; /* Add a transition for hover effect */
}

.image-container img:hover {
  transform: scale(1.05); /* Scale up on hover */
}

.image-container img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Half of the image's height */
  background: linear-gradient(to bottom, rgba(221, 75, 57, 0.5), rgba(221, 75, 57, 0));
  border-radius: 50% 50% 0 0; /* Round the bottom corners of the pseudo-element */
  transform: translateY(100%); /* Move the gradient up to the bottom half */
}

.image-container h4 {
  margin-top: 10px;
  color: #FF4500;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  .image-container {
    text-align: center;
    flex-basis: calc(50% - 20px);
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

.left-section {
  position: relative;
  height: 500px;
  padding: 20px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%),
              url('../../../assests/images/whrb cement bg.png');
  background-size: cover;
}

.left-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.left-section h3{
  color: #FF4500;
  padding-top: 40px;
}

.left-section ul {
  font-size: 20px;
  padding-right: 30px;
}

@media (max-width: 768px) {

  .left-section, .right-section {
      flex: 100%;
  }
}
/*-------------------------------------------------------technology-------------------------------------------------------------------------*/


  
/*-------------------------------------------------------Footer-----------------------------------------------------------------------------*/
ul {
    margin: 0px;
    padding: 0px;
  }
.footer-section {
background: #151414;
position: relative;
}
.footer-cta {
border-bottom: 1px solid #373636;
}
.single-cta i {
color: #ff5e14;
font-size: 30px;
float: left;
margin-top: 8px;
}
.cta-text {
padding-left: 15px;
display: inline-block;
}
.cta-text h4 {
color: #fff;
font-size: 20px;
font-weight: 600;
margin-bottom: 2px;
}
.cta-text span {
color: #757575;
font-size: 15px;
}
.footer-content {
position: relative;
z-index: 2;
}
.footer-pattern img {
position: absolute;
top: 0;
left: 0;
height: 330px;
background-size: cover;
background-position: 100% 100%;
}
.footer-logo {
margin-bottom: 30px;
}
.footer-logo img {
  max-width: 200px;
  max-height: 100px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
  text-align: justify;
  text-justify: inter-word;
}
.footer-social-icon span {
color: #fff;
display: block;
font-size: 20px;
font-weight: 700;
font-family: 'Poppins', sans-serif;
margin-bottom: 20px;
}
.footer-social-icon a {
color: #fff;
font-size: 16px;
margin-right: 15px;
}
.footer-social-icon i {
height: 40px;
width: 40px;
text-align: center;
line-height: 38px;
border-radius: 50%;
}
.facebook-bg{
background: #3B5998;
}
.twitter-bg{
background: #55ACEE;
}
.google-bg{
background: #DD4B39;
}
.footer-widget-heading h3 {
color: #fff;
font-size: 20px;
font-weight: 600;
margin-bottom: 40px;
position: relative;
}
.footer-widget-heading h3::before {
content: "";
position: absolute;
left: 0;
bottom: -15px;
height: 2px;
width: 50px;
background: #ff5e14;
}
.footer-widget ul li {
display: inline-block;
float: left;
width: 50%;
margin-bottom: 12px;
}
.footer-widget ul li a:hover{
color: #ff5e14;
}
.footer-widget ul li a {
color: #878787;
text-transform: capitalize;
}
.subscribe-form {
position: relative;
overflow: hidden;
}
.subscribe-form input {
width: 100%;
padding: 14px 28px;
background: #2E2E2E;
border: 1px solid #2E2E2E;
color: #fff;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}
.subscribe-form button i {
color: #fff;
font-size: 22px;
transform: rotate(-6deg);
}
.copyright-area{
background: #202020;
padding: 25px 0;
}
.copyright-text p {
margin: 0;
font-size: 14px;
color: #878787;
}
.copyright-text p a{
color: #ff5e14;
}
.footer-menu li {
display: inline-block;
margin-left: 20px;
}
.footer-menu li:hover a{
color: #ff5e14;
}
.footer-menu li a {
font-size: 14px;
color: #878787;
}
/*-------------------------------------------------------Footer-----------------------------------------------------------------------------*/
</pre></body></html>