/********** Template CSS **********/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
:root {
    --primary: #2124B1;
    --secondary: #4777F5;
    --light: #F7FAFF;
    --dark: #1D1D27;
}




/*** Spinner ***/

#spinner {

    opacity: 0;

    visibility: hidden;

    transition: opacity .5s ease-out, visibility 0s linear .5s;

    z-index: 99999;

}



#spinner.show {

    transition: opacity .5s ease-out, visibility 0s linear 0s;

    visibility: visible;

    opacity: 1;

}

.wat_sapp {

    position: fixed;

    display: block;

    right: 45px;

    bottom: 45px;

    z-index: 99;

    border-radius: 30px;

}



.back-to-top {

    position: fixed;

    display: none;

    right: 45px;

    bottom: 45px;

    z-index: 99;

    border-radius: 30px;

}





/*** Heading ***/

h1,

h2,

h3,

.fw-bold {

    font-weight: 700 !important;

}



h4,

h5,

h6,

.fw-medium {

    font-weight: 500 !important;

}





/*** Button ***/

.btn {

    font-weight: 500;

    transition: .5s;

}



.btn-square {

    width: 38px;

    height: 38px;

}



.btn-sm-square {

    width: 32px;

    height: 32px;

}



.btn-lg-square {

    width: 48px;

    height: 48px;

}



.btn-square,

.btn-sm-square,

.btn-lg-square {

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: normal;

    border-radius: 50px;

}





/*** Navbar ***/

.navbar-light .navbar-nav .nav-link {

    position: relative;

    margin-left: 25px;

    padding: 35px 0;

    color: var(--light) !important;

    outline: none;

    transition: .5s;

}



.sticky-top.navbar-light .navbar-nav .nav-link {

    padding: 20px 0;

    color: var(--dark) !important;

}



.navbar-light .navbar-nav .nav-link:hover,

.navbar-light .navbar-nav .nav-link.active {

    color: var(--secondary) !important;

}



.navbar-light .navbar-brand h1 {

    color: #FFFFFF;

}



.navbar-light .navbar-brand img {

    max-height: 60px;

    transition: .5s;

}



.sticky-top.navbar-light .navbar-brand img {

    max-height: 45px;

}



@media (max-width: 991.98px) {

    .sticky-top.navbar-light {

        position: relative;

        background: #FFFFFF;

    }



    .navbar-light .navbar-collapse {

        margin-top: 15px;

        border-top: 1px solid #DDDDDD;

    }



    .navbar-light .navbar-nav .nav-link,

    .sticky-top.navbar-light .navbar-nav .nav-link {

        padding: 10px 0;

        margin-left: 0;

        color: var(--dark) !important;

    }



    .navbar-light .navbar-brand h1 {

        color: var(--primary);

    }



    .navbar-light .navbar-brand img {

        max-height: 45px;

    }

}



@media (min-width: 992px) {

    .navbar-light {

        position: absolute;

        width: 100%;

        top: 0;

        left: 0;

        border-bottom: 1px solid rgba(256, 256, 256, .1);

        z-index: 999;

    }

    

    .sticky-top.navbar-light {

        position: fixed;

        background: #FFFFFF;

    }



    .navbar-light .navbar-nav .nav-link::before {

        position: absolute;

        content: "";

        width: 0;

        height: 2px;

        bottom: -1px;

        left: 50%;

        background: var(--secondary);

        transition: .5s;

    }



    .navbar-light .navbar-nav .nav-link:hover::before,

    .navbar-light .navbar-nav .nav-link.active::before {

        width: 100%;

        left: 0;

    }



    .navbar-light .navbar-nav .nav-link.nav-contact::before {

        display: none;

    }



    .sticky-top.navbar-light .navbar-brand h1 {

        color: var(--primary);

    }

}
/** Carousel nav **/


.carousel-main-caption h1{
    position: relative;
    color: #fff;
    font-size: 80px;

}
.carousel-main-caption p{
    position: relative;
    color: #fff;
    font-size: 30px;

}

.carousel-caption {
    position: absolute;
    top: 200px;
    z-index: 1;
    /* left: 0; */
}
.carousel-main-caption button {
    background-color: var(--primary); /* Green background */
    border: none;
    width: 150px;
    color: white; /* White text */
    padding: 10px 22px; /* Some padding */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    /* display: inline-block; Make it an inline-block element */
    font-size: 18px; /* Set font size */
    border-radius: 10px; /* Add rounded corners */
    cursor: pointer; /* Add cursor on hover */
    /* box-shadow: 1px 1px 1px 1px rgba(255, 255, 255, 0.7); Add a shadow */
    margin-bottom: 250px;
    margin-right: 10px;
    margin-left: 10px;


  }
  .carousel-inner{
    position: relative;
  }
  .carousel-main-caption{
    position: absolute;
    top: 250px;
    left: 150px;
   z-index: 999;
   color: #F7FAFF;
   
   
  }

  .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 36, 177, 0.4); /* Dark overlay with 50% opacity */
    z-index: 1;
}
  .carousel-inner video {
    height: 100vh;
    object-fit: cover;
}
  .carousel-main-caption a{
    color: var(--light);
   font-size: 20px;

  }
  
  /* Hover state */
  .carousel-main-caption button:hover {
    background-color: var(--secondary); /* Darker green background */
    font-size: 20px;
    padding: 10px  25px;
  }


  .dom-staffs .list-group-item {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dom-staffs .list-group-item a{
    text-decoration: none;
    font-size: 18px;
    color:#818181;
    cursor: pointer;
}
 .dom-staffs .list-group-item i{
    margin-left: auto;
    font-size: 15px;
    color:#818181;
    cursor: pointer;
 }


  @media (max-width: 900px) {
    .carousel-inner{
        position: relative;
    }
    /* #carouselExampleCaptions img {
         height: 100vh;  
    } */
   .carousel-main-caption{
        position: absolute;
        top:12%;
        left: 0;
       text-align: center;
      }
     
.carousel-main-caption .hire-up{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.carousel-main-caption button{
    font-size: 5;
    margin-bottom: 0;
width: 150px;
padding: 10px 0px;
border-radius: 5px;
}
.carousel-inne.carousel-main-caption button:hover {
    font-size: 6px;
    padding: 2px  12px;
  }

.carousel-main-caption p{
    /* text-align: center; */
   /* width: 270px; */
    font-size: 20px;

}
 .carousel-main-caption h1{
   margin-left: 0;
   padding-left: 0;
    font-size: 30px;

}

.carousel-main-caption a{
    font-size: 15px;
}
/* #web1 img{
    content: url(../img/web\ 1\ small.jpg); 
    width: 100vh;
}
#web2 img{
 content: url(../img/web\ 2\ small.jpg); 

}
#web3 img{
 content: url(../img/web\ 3\ small.jpg); 

} */
  } 
 
/*** Hire Staff ***/
.hire-staff{
    /* position:absolute; */
  
    margin: 200px 50px 0 50px;
    display: flex;
   /* align-items: center; */
   justify-content: space-between;
   align-content: center;
   align-self: center;
   text-align: center;
   

    
}
.hire-staff h1{
    color: white;
}


.hire-staff button {
    background-color: var(--primary); /* Green background */
    border: none;
    width: 150px;
    color: white; /* White text */
    padding: 10px 2px; /* Some padding */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    /* display: inline-block; Make it an inline-block element */
    font-size: 18px; /* Set font size */
    border-radius: 10px; /* Add rounded corners */
    cursor: pointer; /* Add cursor on hover */
    /* box-shadow: 1px 1px 1px 1px rgba(255, 255, 255, 0.7); Add a shadow */
    /* margin-bottom: 250px;
    margin-right: 10px;
    margin-left: 10px; */


  }

  .hire-staff a{
    color: var(--light);
   font-size: 20px;

  }
  
  /* Hover state */
  .hire-staff button:hover {
    background-color: var(--secondary); /* Darker green background */
    font-size: 20px;
    padding: 10px  2px;
  }

  .hire-staff p{
    position: relative;
    color: #fff;
    font-size: 45px;

}
.hire-definition{
    display: flex;
   justify-content: center;
}
.hire-div {
    width: 300px;
    text-wrap: wrap;
}
.container-ro{
    width: 60px; /* Adjust this to change the size of the circle */
    height: 60px; /* Adjust this to change the size of the circle */
    border: 3px solid #ffffff;
    border-radius: 50%;
    /* position: absolute; */
    /* top: 50%;
    left: 50%; */
    /* transform: translate(-50%, -50%); */
    animation: rotateCircle 5s linear infinite;


}
.circle-text {
    font-size: 30px; /* Adjust the font size as needed */
    width: 50px; /* Should be the same as the circle's width */
    height: 50px; /* Should be the same as the circle's height */
    line-height: 50px; /* Should be the same as the circle's height */
    /* text-align: center; */
    shape-outside: circle(50%); /* Creates a circular shape */
    
  }
  
  @keyframes rotateCircle {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

@media (max-width: 900px) {
.hire-staff{
    display: flex;
    flex-direction: column;
    margin: 20px 50px 0 50px;
    justify-content: center;

}
.hire-content{
    margin-bottom: 40px;
}
.hire-staff p{
   
    font-size: 20px;

}
.hire-definition{
    display: flex;
    flex-direction: column;
   justify-content: center;
   margin-left: 20px;
   align-items: center;
}
}

/*** Hero Header ***/

.hero-header {

    background:

        url(../img/bg-dot.png),

        url(../img/bg-dot.png),

        url(../img/bg-round.png),

        url(../img/bg-tree.png),

        /* url(../img/bg-bottom-hero.png)*/;

    background-position:

        10px 10px,

        bottom 190px right 10px,

        left 55% top -1px,

        left 45% bottom -1px,

        center bottom -1px;

    background-repeat: no-repeat;

}





/*** Section Title ***/

.section-title::before {

    position: absolute;

    content: "";

    width: 45px;

    height: 4px;

    bottom: 0;

    left: 0;

    background: var(--dark);

}



.section-title::after {

    position: absolute;

    content: "";

    width: 4px;

    height: 4px;

    bottom: 0;

    left: 50px;

    background: var(--dark);

}



.section-title.text-center::before {

    left: 50%;

    margin-left: -25px;

}



.section-title.text-center::after {

    left: 50%;

    margin-left: 25px;

}



.section-title h6::before,

.section-title h6::after {

    position: absolute;

    content: "";

    width: 10px;

    height: 10px;

    top: 2px;

    left: 0;

    background: rgba(33, 66, 177, .5);

}



.section-title h6::after {

    top: 5px;

    left: 3px;

}





/*** Service ***/

.service-item {

    position: relative;

    height: 350px;

    padding: 30px 25px;

    background: #FFFFFF;

    box-shadow: 0 0 45px rgba(0, 0, 0, .08);

    transition: .5s;

}



.service-item:hover {

    background: solid rgb(0, 0, 0, 0.2);



}



.service-item .service-icon {

    margin: 0 auto 20px auto;

    width: 90px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--light);

    background: url(../img/icon-shape-primary.png) center center no-repeat;

    transition: .5s;

}



/* .service-item:hover .service-icon {

    color: var(--primary);

     background: url(../img/icon-shape-white.png); 

} */



.service-item h5

{

    transition: .5s;

    position: relative;

    padding-bottom: 10px;

}

.service-item p {

    transition: .5s;

    position: relative;

    padding-bottom: 40px;

}



 /* .service-item:hover h5,

.service-item:hover p {

    color: var(--light);

}  */



.service-item a.btn {

    position: absolute;

    bottom: 10px;

    left: 20px;

    display: flex;

    color: black;

    transition: .5s;

    z-index: 1;

}



.service-item:hover a.btn {

    color: var(--light);

} 





.service-item a.btn::before {

    position: absolute;

    content: "";

    width: 0px;

    height: 35px;

    top: 0;

    left: 0;

    border-radius: 40px;

    background: var(--secondary);

    transition: .5s;

    z-index: -1;

}



.service-item:hover a.btn::before {

    width: 100%;

    /* background: var(--light); */

}

/**** Youtube video ****/
.youtube_vid{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {

    .youtube_vid iframe{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 350px;
        height: auto;
    
    }

}


/*** Testimonial ***/

.newsletter,

.testimonial {

    background:

        url(../img/bg-top.png),

        url(../img/bg-bottom.png);

    background-position:

        left top,

        right bottom;

    background-repeat: no-repeat;

}



.testimonial-carousel .owl-item .testimonial-item,

.testimonial-carousel .owl-item.center .testimonial-item * {

    transition: .5s;

}



.testimonial-carousel .owl-item.center .testimonial-item {

    background: var(--light) !important;

    border-color: var(--light);

}



.testimonial-carousel .owl-item.center .testimonial-item * {

    color: #888888;

}



.testimonial-carousel .owl-item.center .testimonial-item i {

    color: var(--primary) !important;

}



.testimonial-carousel .owl-item.center .testimonial-item h6 {

    color: var(--dark) !important;

}





/*** Team ***/


.team-item {

    position: relative;

    transition: .5s;

    z-index: 1;

}



.team-item::after {
    height: 350px;
    width:250px;

    position: absolute;

    content: "";

    top: 3rem;

    right: 3rem;

    bottom: 0;

    left: 0;

    border-radius: 10px;

    background: #FFFFFF;

    box-shadow: 0 0 45px rgba(0, 0, 0, .1);

    transition: .5s;

    z-index: -1;

}



.team-item:hover::after {

    background: var(--primary);

}



.team-item h5,

.team-item small {

    transition: .5s;

}



.team-item:hover h5,

.team-item:hover small {

    color: var(--light);

}



/* Our Clients */
.prev_clnt_wrt{
    font-style: italic;
    font-family: cursive;
    font-size: 20px;
    color: #fff;
}

.clients_logo {
  display:flex;
  /* grid-template-columns:repeat(2, 1fr); */
    align-items: center;
    justify-content:center ;
    text-align: center;
   
}

.clnt_logo{
    width: 120px;
    height: 120px;
    padding: 3px;
    color: var(--dark);
    border-radius: 5px;
    /* box-shadow: 0 0 3px 3px rgba(0, 0,0, 0.09); */
    margin: 0px 10px 0px 10px;
    align-items: center;
    align-self: center;
    /* background-color: #fff; */
    display: flex;
    justify-content: center;

}
.clnt_logo img {
    width: 120px;
}

.clnt_logo a{
    position: absolute;
    top: 20;
}
/* .clnt_logo:hover{
    width: 130px;
    height: 130px;
    background-color:rgba(230, 229, 236, 0.8);
    transition: .5s; 
}*/
@media (max-width: 992px) {
    
    .clients_logo {
        margin-left: 20px;
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       align-items: center;
       justify-content: center;
    }
    .clnt_logo{
        width: 50px;
        height: 50px;
        margin-bottom: 30px;
    transition: .5s;
       
    
    }
    .clnt_logo img {
        width: 50px;
    }
    
}



/*** Project Portfolio ***/

#portfolio-flters .btn {

    position: relative;

    display: inline-block;

    margin: 10px 4px 0 4px;

    transition: .5s;

}



#portfolio-flters .btn::after {

    position: absolute;

    content: "";

    right: -1px;

    bottom: -1px;

    border-left: 20px solid transparent;

    border-right: 0 solid transparent;

    border-bottom: 50px solid #FFFFFF;

}



#portfolio-flters .btn:hover,

#portfolio-flters .btn.active {

    color: var(--light);

    background: var(--primary);

}



.portfolio-overlay {

    position: absolute;

    display: flex;

    flex-direction: column;

    justify-content: center;

    width: 100%;

    height: 100%;

    padding: 30px;

    top: 0;

    left: 0;

   background-color: rgba(0, 0, 0, 0.8);

    transition: .5s;

    z-index: 1;

    opacity: 0;

}



.portfolio-item:hover .portfolio-overlay {

    opacity: 1;

}



.portfolio-item .btn {

    position: absolute;

    width: 90px;

    height: 90px;

    top: 0px;

    right: 0px;

    display: flex;

    align-items: center;

    justify-content: center;

    /* background: url(../img/icon-shape-white.png) center center no-repeat; */

    border: none;

    transition: .5s;

    opacity: 0;

    z-index: 2;

}



.portfolio-item:hover .btn {

    opacity: 1;

    transition-delay: .15s;

}

/*======== MISSION AND VISION ======*/
.vis_mis{
    margin: 100px 150px;
    /* position: relative; */
    display: flex;
    /* align-items: center;  */
    justify-content:center ; 
    text-align: center;
    /* transform: translate(-50%, -50%); */
    }
    
    
.our_vision, .our_mission, .our_core{
    margin: 30px 20px;
flex-wrap:wrap;
width: 400px;
transition: .5s ease-in-out;
  }

  .vis_mis h2 {

    color: green;

  }


  @media (max-width: 900px)

  {
      
   .vis_mis{
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content:center ;
    text-align: center;
   }

    .our_vision, .our_mission, .our_core{
        flex-wrap:wrap;
        width: 200px;
  }
.vis_mis h2 {

    color: green;

  }
 

  }
 

  

  .skills_subtitle {

    color: var(--first-color);

    margin-bottom: var(--mb-3);

  }

  

  .skills_name {

    display: inline-block;

    font-size: 10px;

    margin-right:10px;

    margin-bottom: 10px;

    padding: 0.25rem 0.5rem;

    background-color: #FFFFFF;

    border-radius: 0.25;

  }

  

  .skills_name:hover {

    background-color: var(--first-color);

    color: var(--white-color);

  }

  

  .skills_img img {

    margin-left: 15px;

    border-radius: 0.5rem;

    width: 400px;

    height: 400px;

  }

  



/*** Footer ***/

.footer {

    background: url(../img/footer.png) center center no-repeat;

    background-size: contain;

}



.footer .btn.btn-social {

    margin-right: 5px;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--light);

    border: 1px solid rgba(256, 256, 256, .1);

    border-radius: 40px;

    transition: .3s;

}



.footer .btn.btn-social:hover {

    color: var(--primary);

}



.footer .btn.btn-link {

    display: block;

    margin-bottom: 10px;

    padding: 0;

    text-align: left;

    color: var(--light);

    font-weight: normal;

    transition: .3s;

}



.footer .btn.btn-link::before {

    position: relative;

    content: "\f105";

    font-family: "Font Awesome 5 Free";

    font-weight: 900;

    margin-right: 10px;

}



.footer .btn.btn-link:hover {

    letter-spacing: 1px;

    box-shadow: none;

}



.footer .copyright {

    padding: 25px 0;

    font-size: 14px;

    border-top: 1px solid rgba(256, 256, 256, .1);

}



.footer .copyright a {

    color: var(--light);

}



.footer .footer-menu a {

    margin-right: 15px;

    padding-right: 15px;

    border-right: 1px solid rgba(255, 255, 255, .1);

}



.footer .footer-menu a:last-child {

    margin-right: 0;

    padding-right: 0;

    border-right: none;

}

.emerg_links {
    align-items: center;
    justify-content: center;
color: var(--light);

}

.emerg_links a{
    color: var(--light);
    margin: 10px;
    font-size: 10px;
}
.emerg_links h5{
    font-weight: bold;
    color: var(--light);
}
.emerg_links a:hover{
    font-size: 15px;
    text-decoration: underline;
}

#grid1{
    display: flex;
    /* grid-template-columns: (2, 1fr); */
}


/* Domestic Form Validation*/
.is-invalid {
    border-color: red;
}