/* Fonts  */




html,
body {
  width: 100%;
  overflow-x: hidden;
 
}

/* colours  */

:root {
  --primary: #03A62C;
  --secondary: #2A2C39;
  --ternery:#E5FFEB;
  --prim-font: #949494;
  
}
p{
  font-size: 0.9rem;
  color: var(--prim-font);
  line-height: 1.7rem;
}

/* Basic css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.main-banner{
  width: 100%;
  height: 100vh;

}
.main-banner .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 0!important;
}
.nav-mnubx{
  width:70px;
  height: 70px;
  padding: 1.5rem;
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.bar {
  width: 90%;
  height: 2px;
  background-color: #fff;
}
.nav-bx-wr{
  height: 70px;
  position: absolute;
  top: 30px;
   left: 30px;
   z-index: 9;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-start;
  
}

.menu-bx ul{
  list-style: none;
  display: inline-flex;
  margin-bottom: 0px;
}
.menu-bx ul li{
  margin: 0px 18px;
  position: relative;
}
.menu-bx ul li a{
  text-decoration: none;
  color: var(--secondary);
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}
/* Style for the submenu */
.submenu {
  position: absolute;
  top: 28px; /* Position below the parent item */
  left: 0px;
  display: none!important;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  flex-direction: column;
}
.submenu li a{
  text-transform: capitalize!important;
  transition: 0.3s all ease-in-out;
}
.submenu li a:hover{
  color: var(--primary);
}
.submenu li{
  padding: 10px 0px!important;
  border-bottom: 1px solid #c2d8c8;
}
.submenu li:last-child{
  border-bottom: 0px;
}
.menu-bx ul li:hover .submenu {
  display: block!important;
}


/* Style for the dropdown indicator */
.dropdown-indicator {
  margin-left: 5px;
  font-size: 0.8em; /* Adjust font size as needed */
}
.menu-wr-bx{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.8rem;
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}
.menu-bx{
  /* transform: translateX(-100%); */
  /* overflow: hidden; */
  width: 0;
  visibility: hidden;
  transition: width 0.3s ease, opacity 0.3s ease;
}
/* .menu-bx > ul {
  overflow: hidden!important;
} */
.menu-bx ul.submenu {
  overflow: visible!important; /* Keep submenus visible */
}

.menu-bx.menu-show{
  width: 100%;
  visibility: visible;
}
.menu-wr-bx.open {
  transform: translateX(0);
}
.brand-logo{
  /* width: 10%; */
  display: block;
}
.brand-logo img{
  width: 250px;
}
.nav-mnubx.active .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.nav-mnubx.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-mnubx.active .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.our-featsec{
  width: 90%;
  min-height: 280px;
  padding: 4rem 2rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: -50px;
  background-color: #fff;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.grass{
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}
.our-featsec .our-featsec-innerbx{
  width:33.33%;
  height: auto;
  padding: 0px 15px;
  border-right: 1px solid #e9e9e9;

}
.our-featsec .our-featsec-innerbx:nth-child(3){
  border-right: unset;
}
.our-featsec .our-featsec-innerbx p{
  color: var(--prim-font);
  margin-top: 15px;
}
.feat-tit{
  font-size: 1.6rem;
   font-weight: 500;
  line-height: 1.7rem;
  color:#2A2C39;
  margin-top: 10px;
}
.hmabt-se{
  background-color: var(--ternery);
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 150px;
  margin-top: 60px;
}
.hm-abt-txt h2 span{
  color: var(--primary);
}
.hmimgbx{
  width: 70%;
  margin: 0px auto;
}
.some-rand-num{
  width: 90%;
  position: relative;
  min-height: 200px;
  margin-top: -100px;
  background-color: #fff;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
  margin-left:auto;
  margin-right: auto;
}
.digit-bx{
  width: 100%;
  height: 200px;
  color: var(--prim-font);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
  text-align: center;
  
}

.digit-inner-bx{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem;
  border-right: 1px solid #e9e9e9;
}
.digit-inner-bx span:first-child{
  color: var(--secondary);
}
.digit-inner-bx:last-child{
  border-right: none;
}
.digit-inner-bx h4{
  margin-bottom: 0px;
  font-size: calc(1.9rem + 0.5vw);
  font-weight: 600;
}
.counter-wr{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
}
.our-service-sec{
  width: 100%;
  height: auto;
  margin-top: 100px;
  padding: 0px 60px;
}
.hm-ser{
  width: 100%;
  height: 280px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.our-service-sec h2{
  text-align: center;
  margin-bottom: 20px;
}
.our-service-sec h2 span{
  color: var(--primary);
}
.hm-ser-titbx{
  width: 100%;
  height: 100%;
  padding: 0.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.8211659663865546) 0%, rgba(0,2,5,0) 100%);
  border-radius: 12px;
}
.ser-tt-txt{
  width: 50%;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #ffff;
}
.proj-tit{
  width: 80%;
  height: auto;
  background-color: var(--primary);
  padding: 0.5rem 0.9rem;
  margin: 0px auto;
  position: relative;
  margin-top: -35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.proj-gallery{
  width: 100%;
  height: auto;
  background-color: #E5FFEB;
  padding: 60px 0px;
  margin-top: 80px;
  position: relative;
}
.proj-gal-tit-wr{
  width: 100%;
  height: auto;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.proj-navigation{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8%;
}
.left-proj img, .right-proj img{
    width: 100%;
} 
.left-proj, .right-proj{
  cursor: pointer;
}
.left-proj{
  margin-right: 5%;
}
.proj-gal-tit-txt{
  font-size: 1.9rem;
  font-weight: 500;
}
.view-all-proj{
  
  background-color: #393939;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  white-space: nowrap;
  margin-top: 18px;
}
.view-all-proj i{
  margin-left: 4%;
}
.discuss-proj{
  width: 100%;
  height: 230px;
  background-image: url('../img/ready-to-transform.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.transfrom-cont{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-direction: column;
  color: #fff;
  text-align: center;
}
.transfrom-cont h2{
  margin-bottom: 15px;
}
.prim-btn{
  
  background-color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  white-space: nowrap;
  border: 0px;
  font-size: 0.9rem;
}
.our-clint{
  width: 100%;
  padding: 40px 40px;
}
.our-clint h2{
  color: var(--primary);
  font-weight: 500;
}
footer{
  width:100%;
  height: auto;
  padding-top: 50px;
  padding-left: 40px;
  padding-right: 40px;
  background-image: url('../img/footer-b.jpg');
  background-position: center;
  background-size: cover;
}
footer p{
   color: #ffff;
}
.foot-social-wr{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.foot-social-wr img{
  width: 80%;
  margin-right: 5%;
}
footer h5{
  color: #20FF53;
  position: relative;
  /* display: inline-block; */
}
footer h5:after{
  position: absolute;
  content: '';
  width: 15%;
  height: 2px;
  background-color: #20FF53;
  left: 0;
  bottom: -7px;
}
footer a{
   color:#fff;
   text-decoration: none!important;
}
footer a:hover{
  color: #ffff;
}
.cont-lnks{
  margin-top: 30px;
  list-style: none;
}
.cont-lnks a{
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
}
.cont-lnks i{
  margin-right: 2%;
}
.cont-lnks li{
  margin: 15px 0px;
}
.footer-cont-bx{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.footer-cont-bx img{
  margin-right: 2%;
}
footer hr{
  margin-bottom: 0px;
  border: 1px solid rgba(32, 255, 83, 0.2);
}
.copyrght{
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  width: 100%;
  height: auto;
  padding: 10px 0px;
}
.plc{
  padding-left: 5%;
}
.footer-cont-bx {
  font-size: 0.9rem;
}
.proj-namebx h3{
  color: #fff;
  font-size: 1.2rem;
}
.proj-namebx span{
  color: #20FF53;
}
.bannersec{
  position: relative;
  z-index: 0;
}
.bannersec .owl-carousel .slide{
  position: relative;
}
.banner-txt-ov{
  position: absolute;
  left: 5%;
  top: 40%;
}
.banner-txt-ov h2{
  color: #fff;
   font-size: 2.8rem;
   text-transform: uppercase;
   font-weight: 600;
}
.banner-txt-ov h4{
  font-size: 1.8rem;
  color: #fff;
  text-transform: uppercase;
}
.banner-txt-ov h4 span{
  color: var(--primary);
}
.banner-txt-ov p{
  width: 50%;
  color: #ffff;
  line-height: 1.3rem;
}
.main-slider-nav{

  position: absolute;
  top: 70%;
  right: 5%;
  z-index: 999!important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  background-color: #20FF53;
}
.msl-left{
  margin-right: 10%;
  cursor: pointer;
  position: relative;
  z-index: 9999!important;
}
.msl-right{
  cursor: pointer;
  position: relative;
  z-index: 9999!important;
}
.banner-social{
  position: absolute;
  right: 30px;
  top: 60%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner-social img{
  margin: 3px 0px;
}
.inner-pg-banner{
  width: 100%;
  height: 350px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  
}
.inner-bk-ov{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5);
}
.inner-pg-banner h2{
  color: #fff;
  margin-top: 100px;
}
.inner-pg-banner h2 span{
  color: var(--primary);
}
.inner-pg-banner ul{
  list-style: none;
  display: inline-flex;
}
.inner-pg-banner ul li{
  margin-left: 18%;
  position: relative;
}
.inner-pg-banner ul li::before{
  content: '/';
  position: absolute;
  left: -12px;
  top: 0px;
  color: #fff;
}
.inner-pg-banner ul li:first-child{
  margin-left: 0%;
}
.inner-pg-banner ul li:first-child::before{
  content: ''!important;
}
.inner-pg-banner ul li a{
  color: #ffff;
  text-decoration: none;
  white-space: nowrap;
}
.main-cont-wr{
  width: 100%;
  height: auto;
  padding: 40px 60px;
}
.project-bx{
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.project-bx img{
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.proj-ov{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.8rem;
  background-color: rgba(3, 162, 144, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  transition: top 0.3s ease;

}
.proj-tit-wr{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.proj-ov table tr, .proj-ov table td{
  color:#fff;
  border: 1px solid #fff;
}
.proj-ov table td, .proj-ov table tr,  .proj-ov table th{
  padding: 0.5rem;
}
.project-bx:hover .proj-ov {
  top: 0; 
}
.proj-ov a {
  opacity: 0; 
  transition: opacity 0.3s ease; 
}

.project-bx:hover .proj-ov a {
  opacity: 1; 
}
.proj-name{
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  opacity: 0; 
  transition: opacity 0.3s ease; 
}
.project-bx:hover .proj-name{
  opacity: 1;
}
.proj-det-img{
  width: 100%;
  height: 500px;
  background-color: #20FF53;
}
.proj-det-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.proj-detail-bx{
  width: 100%;
  min-height: 500px;
  background-color: #E5FFEB;
  position: relative;
  padding: 2rem 2.5rem;
}
.proj-detail-bx ul{
  list-style: none;
}
.proj-detail-bx ul li{
  margin: 10px 0px;
  color: var(--primary);
}
.proj-detail-bx h5{
  color: var(--secondary);
}
.proj-detail-bx ul li i{
  margin-right: 2%;
}
.project-gal-sec{
  margin-top: 30px;
}
.vis-mis-sec{
  width: 100%;
  height: 400px;
  background-image: url('../img/vis-mis-bg.jpg');
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.vis-mis-bx{
  width: 80%;
  min-height: 290px;
  background-color: rgba(255,255,255,0.9);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vis-mis-bx h3{
  color: var(--primary);
}
.vis-mis-leftbx, .vis-mis-rightbx{
  width: 50%;
  padding: 0.8rem 1.5rem;
}
.vis-mis-leftbx{
  border-right: 1px solid #d6d6d6;
}

.cont-wr-bx{
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 1rem;
  border-right: 1px solid #ececec;
}
.cont-wr-bx h3{
  color: var(--primary);
}
.cont-sing-ln{
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-bottom: 8px;
}
.cont-sing-ln img{
  width: 25px;
  height: 25px;
  margin-right: 3%;
}
.cont-sing-ln a{
  font-weight: 500;
  color: var(--prim-font);
  text-decoration: none;
}
.lghtbl{
  background-color: #E5FFEB;
}
.qk-enq{
  padding: 1.8rem;
}
.serv-bx{
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.ser-img{
  width: 100%;
  height: 300px;
}
.ser-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ser-contbx{
  width: 90%;
  min-height: 200px;
  margin-top: -40px;
  margin-left: auto;
   margin-right: auto;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.8rem;
  box-shadow: 0px 6px 15px -3px rgba(0,0,0,0.1);
}
.ser-contbx h4{
  font-size: 1.3rem;
  color: var(--primary);
}
.ser-contbx a{
  color: var(--secondary);
  text-decoration: none;
  transition: 0.3s all ease-in-out;
}
.ser-contbx a:hover{
  color: var(--primary);
}
.pj-maintitbx{
  width: 100%;
  height: auto;
  background-color: var(--primary);
  color: #ffff;
  font-size: 1.5rem;
  padding: 1rem;
  margin-bottom: 30px;
  font-weight: 600;
}
.career-sec h6{
  line-height: 1.8rem;
}
.proj-gallery .view-all-proj{
  position: relative;
  z-index: 999;
}
.proj-gallery .grass{
  z-index: 1;
}
.mct{
  margin-top: 30px;
}
.cmb{
  margin-bottom: 0px;
}
.prim-btn{
   white-space: unset;
}
.mob-menu-wr{
  display: none;
}
#mobileMenu{
  display: none;
}
