:root{

    --blue:rgba(1,72,134,255);
    --darkBlue:#001D38;
    --black:#1a1a1b;
    --darkGrey: #333333;
    --lightGrey:#ebebeb;
    --offWhite:#FFF;
    --lightBlue:#a9e5fa; 
    --yellow:#FFCD00;
    --red: #d9534f;
    --green: rgba(63, 130, 105, 1);
}
/* header start */
*{
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    background-color: var(--lightGrey);
}

::selection{
    background-color: var(--lightBlue);
    color: var(--darkBlue);
}

 .header .linkedin,.header .facebook{
  color: var(--darkBlue);
  transition: all 0.3s !important;

 }

  .linkedin:hover{
    color: #0e76a8;
    cursor: pointer;
  
  }
/* header start */

.top{
    position: fixed;
    left: 0;
    top: 0;
    right: 0; 
    z-index: 100; 
  }
  
  .header{
    background-color: var(--offWhite);
    color: var(--darkBlue);
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 15px;
  }
  
  .header i:not(.header .left i),.header .left > p{
    color: var(--blue);
  }
  
  .header .left,.header .right{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header .right{
    width: 100%;
  }
  
  .header .left .media{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
  }
  
  .header .left .media a{
    margin-left: 10px;
  }
  
  .header .left .media a:hover{
    color: var(--yellow);
    transition: all 0.5s ease-in-out;
  }
  
  .header .right p{
    margin-left: 20px;
  }
  
  .header .right .icon{
    margin-right: 5px;
  
  }
  
  /* header end */
  
  
  /* navbar start */
  
  .navbar{
    background-color: var(--blue);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 50px;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    transition: all 0.5s;
    padding: 40px 10px;
  }
  
  .navbar a{
    color: var(--offWhite);
  }
  
  
  
  .navbar #logo img{
    width: 100px;
    font-weight: 700;
  }
  
  .navbar .links{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    transition: all 0.3s ease-in-out;
    width: 55%;
    font-size: 18px;
    font-weight: 500;
  }
  
  .navbar .links a:hover, .hamburger {
    transition: all 0.5s ease-in-out;
    cursor: pointer;
  }
  
  .navbar a::after{
    content: "";
    display: block;
    background-color: var(--yellow);
    width: 0%;
    height: 2px;
    margin: auto;
    transition: all 0.4s ease-in-out;
  }
  
  
  .navbar a:hover::after,  .navbar a.active::after {
  width: 100%;
  }
  
  
  .hamburger .bar{
    width: 25px;
    height: 3px;
    background-color: var(--offWhite) !important;
    border-radius: 30px;
    display: block;
    transition: all 0.5s ease-in-out;
    margin: 5px auto;
  }
  
  .hamburger{
    display: none;
  }
  
  @media (min-width:1200px) {
    .navbar .links{
        width: 40%;
    }
  }
  
  @media (max-width:768px) {
  
    .header{
        display: none;
    }
  
    .navbar{
        justify-content: space-between;
        top: 0;
        padding: 40px 30px;
    }
  
    .hamburger{
        display: block;
        transition: all 1s linear;
    }
  
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotateZ(45deg);
    }
  
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotateZ(-45deg) !important;
    }
  
    .navbar .links{
        position: fixed;
        flex-direction: column;
        background-color: var(--blue);
        width: 100%;
        transition: all 0.3s linear;
        top: 70px;
        left: -100%;       
    }
  
    .navbar .links a{
        margin-top: 2.5px;
  
        padding: 15px;
    }
  
  
    .navbar .links.active {
        left: 0;
      }
  }
  
  /* navbar end */
/* banner start */
.banner {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.gradient-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    opacity: 0.9;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.358), var(--darkBlue));
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.content h3 {
   font-size: 40px;
    transform: translateY(100%);
    color: var(--yellow);
}


/* banner end */

.about .left #top h1,.services #top h1,.services .bottom .info h1{
    text-transform: uppercase;
    color: var(--black);
    position: relative;
    margin-left: 25px;
    font-size: 30px;
}

.about .left #top h1::before,.services #top h1::before,.services .bottom .info h1::before{
    content: "";
    width: 20px;
    height: 3px;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    display: inline-block;
    background-color: var(--yellow);
}

/* services start */

.services{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    flex-wrap: wrap;
    background-color: var(--lightGrey);
    min-height: 100vh;
    color: var(--black);
    position: relative;
    padding: 30px 0;
}


.services .bottom{
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    color: var(--offWhite);
}

.services  .box{
    width: 25%;
    margin: 60px 2%;
    min-width: 300px;
    height: 500px;
    padding: 45px 30px;
    position: relative;
    background-size: cover;
    transition: all 0.7s;
}


.services .bottom .box::before{
    transition: all 0.5s;
}

.services .bottom .wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.services .wrapper:nth-child(even){
    flex-direction: row-reverse;
  }

.services .bottom .info{
    position: relative;
    background-color: var(--offWhite);
    color: var(--darkGrey);
    z-index: 5;
    padding: 15px 25px;
    height: 450px;
    width: 45%;
    display: flex;
    flex-direction: column;
   justify-content: space-around;
}



.services .info .categories h5{
    font-size: 20px;
    font-weight: 600;
    padding: 5px 0;
    color: var(--blue);
}
.services .info .categories li{

    margin-top: 5px;
}

.services .info .categories li:hover{
    transform: translateX(10px) !important;
}
.services .info .categories li{
   transition: all 0.5s;
}
.services .info .categories li a{
    color: var(--darkGrey);
    text-decoration: underline;
    transition: all 0.5s;
}
.services .info .categories li span{
    color: var(--green);
    margin-right: 3px;
}
.services .bottom .box #box-btn{
    color: var(--yellow);
    transition: all 0.3s;
    font-weight: 600;
}

.services .bottom .box #box-btn span{
    margin: 0 5px;
}

.services .bottom .box #box-btn:hover{
    transform: translateX(10px);
    cursor: pointer;
}

.services .bottom .info h1{
    text-transform: capitalize;
    color: var(--black);
    font-weight: 500;
}

.services .bottom .box::before{
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -30px;
    left: -30px;
    border: 3px solid var(--blue);
}

.services .bottom .box::after{
    content: "01";
    display: inline-block;
    position: absolute;
    background-color: transparent;
    color: transparent;
    margin: 0;
    padding: 0 15px;
    bottom: 0px;
    left: 0;
    font-size: 145px;
    width: 100px;
    height: max-content;
    -webkit-text-stroke: 2px var(--offWhite);
    /* backdrop-filter: blur(50px); */
}

.services .bottom .box:hover{
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.services .bottom .box h1{
    color: var(--offWhite);
}

.services .bottom .box.resedential::after{
    content: "02";
}
.services .bottom .box.retail::after{
    content: "03";
}

.services .bottom .box.resedential{
    background-image: url(../images/resedential1.jpeg);
    background-position-x: 490px;
}


.services .bottom .box.industrial{
    background-image: url(../images/id2jpg.jpg);
    background-position-x: -20px;
    background-origin: padding-box;
}

.services .bottom .box.retail{
    background-image: url(../images/retail1.jpeg);
    background-position-x: -200px;
}


@media only screen and (max-width: 768px) {
    .services .bottom .box{
        width: calc(70%);
        min-width: 280px;
        height: 450px;
        display: none;

    }
    .services .bottom .box::before{
        top: -25px;
        left: -25px;
    }
    .services #top{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: auto;
        text-align: center;
        padding-left: 0;
    }

    .services .bottom .wrapper{
        flex-direction: column;
    }
    .services .bottom .info{
        width: calc(70%);
        margin-bottom: 20px;
        min-height: 450px;

    }

    .services .bottom .info .buttons{
        display: flex;
        align-items: center;
        justify-content: center;   
     }

}
@media only screen and (max-width: 600px) {
    .services .bottom .box::before{
        top: -20px;
        left: -20px;
    }

    .services .bottom .box::after{
        font-size: 120px;
    }

    
    .services #top h1{

        font-size: 22.5px;
    }

    
    .services #top h3{

        width: 75%;
        font-size: 18px;
    }

    .services .bottom .box{
        width: calc(70% / 3);
        min-width: 280px;
        height: 430px;

    }

    .services .bottom .box h1{
        font-size: 20px;
    }

    .services .bottom .box p{
        font-size: 14px;
    }

    .services .bottom .box #box-btn{
        font-size: 14px;
    }
}
@media only screen and (max-width: 500px) {

    .services .bottom .info h1{
        font-size: 22px;
    }

    .services .bottom .info p{
        font-size: 14px;
    }
  
    .services .bottom .info .categories h5{

        font-size: 17.5px;
    }
    .services .bottom .info .categories ul li{
        font-size: 14px;
    }


    .services .bottom .box{
        width: calc(70% / 3);
        min-width: 270px;
        height: 410px;

    }

    .services .bottom .box h1{
        font-size: 18px;
    }

    .services .bottom .box p{
        font-size: 12px;
    }

    .services .bottom .info .buttons button{
        padding: 8px 32px;
         font-size: 12px;
    }
}
@media only screen and (max-width: 300px) {
    .services .bottom .box::before{
        top: -20px;
        left: -20px;
    }

    .services .bottom .box::after{
        font-size: 100px;
    }

    
    .services #top h1{

        font-size: 20px;
    }

    
    .services #top h3{

        width: 75%;
        font-size: 12.5px;
    }

    .services .bottom .box{
        width: calc(70% / 3);
        min-width: 200px;
        height: 450px;

    }

    .services .bottom .box h1{
        font-size: 20px;
    }

    .services .bottom .box p{
        font-size: 14px;
    }

    .services .bottom .box #box-btn{
        font-size: 14px;
    }

    .services .bottom .info h1{
        font-size: 18px;
    }

    .services .bottom .info p{
        font-size: 12px;
    }
    .services .bottom .info .categories h5{
        font-size: 15px;
    }
    .services .bottom .info .categories ul li{
        font-size: 12px;
    }
    .services .bottom .info .buttons button{
        padding: 8px 25px;
         font-size: 12px;
    }

}


button{
    background-color: var(--yellow);
    padding: 12.5px 45px;
    margin: 20px auto;
    border: 3px solid transparent;
    color: var(--offWhite);
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.35s linear;
}


 button:hover{
    border-radius: 30px;
    cursor: pointer;
    border-color: var(--yellow);
    background-color: transparent;
    color: var(--yellow);
  
}
/* services end */




/* Footer Start */

footer {
    position: relative;
    padding-top: 20px;
}
  
  footer #top {
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: var(--darkBlue);
    padding: 20px;
  }
  
  footer #top,
  footer #top a {
    color: var(--offWhite);
  }
  
  footer #top .title {
    color: var(--darkGreen);
    pointer-events: none;
    font-weight: 700;
  }
  
  footer #top .logo-footer {
    align-self: center;
  }
  
  footer .bottom,
  footer #top .logo-footer img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  footer #top .contact-footer ul {
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-direction: column;
    height: 100%;
  }
  
  footer #top .contact-footer ul li {
    padding: 5px 0;
  }
  
  footer #top .contact-footer ul li span:first-of-type {
    padding-right: 5px;
  }
  
  footer .bottom {
    
    background-color: var(--darkGreen);
    padding: 20px;
    color: var(--white);
  }
  
  footer #top .logo-footer img {
    width: 135px;
  }
  
  .about-footer {
    width: 30%;
  }
  
  footer #top .about-footer .social {
    font-size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: start;/*changed*/
    gap: 25px;
    padding: 20px 0px;
  }

    
  footer #top li a
  {
    transition: all 0.75s;
  }
  
  footer #top li a span {
    opacity: 0;
    transition: all 0.75s;
  }
  
  footer #top li a:hover,
  footer #top li:hover {
    transition: all 0.3s;
    color: var(--darkGreen);
    transform: translateX(-5px);
  }
  
  footer #top .contact-footer li:nth-child(1):hover span:first-child {
    color: var(--red);
  }
  
  footer #top .contact-footer li:nth-child(2):hover span:first-child {
    color: var(--green);
  }
  
  footer #top .contact-footer li:nth-child(3):hover span:first-child {
    color: var(--lightBlue);
  }
  
  footer #top .links li a:hover span {
    opacity: 1;
  }
  




  .social i:hover {
    transform: translateY(-3px);
    transition: all 0.6s;
    cursor: pointer;
  }


 .header .linkedin,.header .facebook{
  color: var(--darkBlue);
  transition: all 0.3s !important;

 }

  .linkedin:hover{
    color: #0e76a8;
    cursor: pointer;
  
  }
  /* dd */
  
  .facebook:hover {
    background: #3a5795;
    color: #1c3977;
    background: linear-gradient(to bottom, #3a5795 0%, #2b4886 100%);
    background: -webkit-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    background: -moz-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    background: -o-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    background: -ms-linear-gradient(top, #3a5795 0%, #2b4886 100%);
    -ms-background-clip: text;
    -webkit-background-clip: text;
    -o-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -o-text-fill-color: transparent;
    -ms-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    
  }
  
  .whatsapp:hover {
    color: #00cf4d;
  }
  
  .instagram:hover {
    background: #f09433;
    background: -moz-linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    background: -webkit-linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    background: linear-gradient(
      45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%
    );
    -ms-background-clip: text;
    -webkit-background-clip: text;
    -o-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -o-text-fill-color: transparent;
    -ms-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }

  
  footer #top .title, footer #top .social{
    align-self: self-start;
  }

  footer #top > div{
    width: calc((100% - 20%)/3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: justify;

  }

  footer #top .contact-footer .location {
    width: 85%;
  }

  footer #top .links {
    width: fit-content;
  }

  footer #top .links .title{
    align-self: self-start;
  }

  footer #top .logo-footer
  {
    width: 15%;
  }
  footer #top .logo-footer img{
    width: 200px ;
  }

  @media only screen and (max-width: 1200px) {
    footer #top .logo-footer img{
      width: 150px ;
    }
  }

  @media only screen and (max-width: 992px) {

    footer #top .logo-footer img{
      width: 125px ;
    }

    footer #top .title {
      font-size: 18px;
      font-weight: 500;
    }
    footer #top .txt {
      font-size: 14px;
      font-weight: 500;
    }


  }
  @media only screen and (max-width: 768px) {
    footer #top .title {
      font-size: 16px;
      font-weight: 500;
    }
    footer #top .links {
      justify-content: start !important;
      align-items: self-start !important;
    }
  
    footer #top .txt {
        font-size: 14px;
        font-weight: 500;
      }
  
    footer #top {
      justify-content: center;
      align-items: start;
    }
  
    footer #top .about-footer {
      width: 100%;
      padding: 15px 0px;
    }
  
    footer #top .contact-footer,footer #top .links {
      width: 50%;
    }
  
    footer #top .logo-footer {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    footer #top div {
      width: 100%;
    }
  }

  @media only screen and (max-width: 400px) {
    footer #top .title {
      font-size: 16px;
      font-weight: 500;
    }
    footer #top .txt {
        font-size: 12px;
        font-weight: 500;
      }
  
    footer #top {
      justify-content: center;
      align-items: start;
    }
  
    footer #top .about-footer {
      width: 100%;
      padding: 15px 0px;
      text-align: center ;
      word-break:keep-all;
    }
    footer #top .links{
        display: none;
    }
    footer #top .contact-footer,footer #top .links {
      width: 100%;
      margin-top: 10px;
      display: none;
      font-size: 12px;
    }
  
    footer #top .logo-footer {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    footer #top .logo-footer  img{
        width: 120px;
    }
  
    footer #top div {
      width: 100%;
    }

    footer #top .about-footer .social{
        display: flex;
        align-items: center ;
        justify-content: center ;
    }

    footer .bottom{
        font-size: 12px;
    }
  }
  
  /* Footer End */