@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

 /* preloader */
#pre{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ring{
    width: 200px;
    height: 200px;
    border: 0px solid #011015;
    border-radius: 50%;
    position: absolute;
}
.ring:nth-child(1){
    border-bottom-width: 8px;
    border-color: rgb(8, 45, 106);
    animation: rotate1 2s linear infinite;
}
.ring:nth-child(2){
    border-right-width: 8px;
    border-color: rgb(8, 45, 106);
    animation: rotate2 2s linear infinite;
}
.ring:nth-child(3){
    border-top-width: 8px;
    border-color: rgb(8, 45, 106);
    animation: rotate3 2s linear infinite;
}
.loading{
    color: black;
}

@keyframes rotate1{
    0%{
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100%{
        transform: rotateX(35deg) rotateY(-45deg) rotate(360deg);
    }
}
@keyframes rotate2{
    0%{
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100%{
        transform: rotateX(50deg) rotateY(10deg) rotate(360deg);
    }
}
@keyframes rotate3{
    0%{
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100%{
        transform: rotateX(35deg) rotateY(55deg) rotate(360deg);
    }
}

html{
   scroll-behavior:smooth;
}
 
/* background photo */
body{
    background: url("/images/bg1.jpg") no-repeat center;
    width: 100vw !important;
    background-size: cover;
    background-attachment: fixed;
}

.favicon{
    border-radius: 50%;
}
.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}


.navbar {
    position: relative;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 30px 0;
    /* box-shadow: 0px 10px 50px 5px #00000038; */
}

.navbar.sticky::before {
    content: '';
    /* background: url("images/dark-green-leaves-background-hydrangea-260nw-1699508995.jpg") ; */
    position: absolute;
    opacity: 1;
    top: -10px;
    left: -10px;
    width: 105vw;
    height:110%;
    z-index: -1;
    filter: blur(1.5px);
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    color: rgb(0, 0, 0);
    font-size: 35px;
    font-weight: 600;
}

.navbar .logo a span {
    color: #1701a7;
    transition: all 0.3s ease;
}

.navbar.sticky .logo a span {
    color: rgb(0, 0, 0);
}
.navbar .menu ul{
    
    padding: 0; 
    list-style: none; 
    display: table;
    width: 600px;
    text-align: center;
}
.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
 
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    padding: 15px 20px;
    position: relative;
}

.navbar .menu a:after {    
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #000000;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }
  .navbar .menu a:hover:after { 
    width: 100%; 
    left: 0; 
  }
.navbar .menu li a:hover {
    color: #1701a7;
}

.navbar.sticky .menu li a:hover {
    color: rgb(0, 0, 0);
}

.menu-btn{
    color: rgb(0, 0, 0);
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.home {
    display: flex;
    /* background: url("images/leaves_bushes_green_174515_3840x2400.jpg") no-repeat center; */
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    color: rgb(0, 0, 0);
    min-height: 500px;
    font-family: 'Ubuntu', sans-serif;
}

.home .max-width {
    margin: auto 0 auto 40px;
}

.home .max-width .home-content{
    padding-top: 120px;
}

.home .home-content .text-1 {
    font-size: 27px;
}

.home .home-content .text-2 {
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
}

.home .home-content .text-3 {
    font-size: 40px;
    margin: 5px 0;
}

.home .home-content .text-3 span {
    color: #1701a7;
    font-weight: 500;
}

/* all similar styling */
section{
    padding: 120px 0;
    padding-bottom: 300px;
}
#contact{
    padding-bottom: 20px;
}
.about, .services, .blogs, .contact, footer{
    font-family: 'Poppins',sans-serif;
}
.about .about-content, .services .serv-content, .blogs .blogs-content, .contact, .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    color: #000000;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 80px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: rgb(0, 0, 0);
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -14px;
    left: 50%;
    font-size: 20px;
    color: #000000;
    padding: 5px;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
}
/* about section styling */
.about{
    /* background: url("images/leaves_bushes_green_174515_3840x2400.jpg"); */
    background-size: 2000px;
}
.about .title::after{
    content: "Who We Are";
}
.about .about-content .left{
   width: 45%;
}
.about .about-content .left img{
    height: 370px;
    width: 370px;
    object-fit: cover;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.about .about-content .left img:hover{
    transform: scale(1.05);
}
.about .about-content .right{
    width: 55%;
 }
 .about .about-content .right .text{
    color: rgb(0, 0, 0);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
 }
 .about .about-content .right .text span{
     color: #1701a7;
 }
 .about .about-content .right .paragraph{
     color: rgb(0, 0, 0);
     font-size: 18px;
 }
 .about .about-content .right .p{
     text-align: justify;
 }
 .about .about-content .right a{
    display: inline-block;
    background: none;
    color: #1701a7;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    padding: 5px 30px;
    border-radius: 6px;
    border: 2px solid #1701a7;
    transition: all 0.3s ease;
 }
 .about .about-content .right a:hover{
     color: rgb(0, 0, 0);
     background:none;
 }
 
 /* services styling */
 .services{
     color: rgb(0, 0, 0);
     /* background:black; */
     /* background: url("images/leaves_bushes_green_174515_3840x2400.jpg"); */
     background-size: 2000px;
 }
 .services .title::before{
    background: rgb(0, 0, 0);
}
 .services .title::after{
     background: rgb(255, 255, 255);
     content: "What We Provide";
 }
 .services .serv-content .card{
     width: calc(33% - 20px);
     text-align:center;
     background:none;
     border-radius: 6px;
     padding: 20px 25px;
     cursor: pointer;
     transition: all 0.3s ease;
 }
 .services .serv-content .card:hover {
     background:  none;
 }
 .services .serv-content .card .box{
      transition: all 0.3s ease;
 }
 .services .serv-content .card:hover .box{
      transform: scale(1.05);
}
 .services .serv-content .card i{
     font-size: 50px; 
     color: rgb(0, 0, 0);
     transition:color 0.3s ease;
 }
 .services .serv-content .card:hover i{
    color: #1701a7;
}
 .services .serv-content .card .text{
     font-size: 25px;
     font-weight: 500;
     margin: 10px 0 7px 0;
 }
 .service-text{
    color: rgb(0, 0, 0);
 }

/* blogs Section Styling */

.blogs{
    /* background: url("images/leaves_bushes_green_174515_3840x2400.jpg"); */
    background-size: 2000px;
}

.blogs .title::after{
    content: "What We Know";
}

.blogContent a{
    transition: all .5s;
    text-decoration: none;
    color: #000000;
  
  }
  .singleBlog img{
    width: 100%;
    transition: all .5s;
  }
  #blogs section{
    padding: 20px 0;
    margin-top: 50px;
    background: rgba(116, 185, 255,0.09);
    text-align: center;
  }
  #blogs{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  .blogs-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin: 0px;
  }
  .singleBlog{
    position: relative;
    overflow: hidden;
    max-height: 580px;
    height: 100%;
    width: 31%;
    box-sizing: border-box;
    box-shadow: 0 2px 10px #000000;
    transition: all .5s;
  }
  .singleBlog:hover{
    box-shadow: 0 2px 13px #000000;
    transition: all .5s;
  }
  .singleBlog:hover img{
    transform: scale(1.1);
    transition: all .4s;
  }
  .blogContent{
    position: absolute;
    left: 0;
    bottom: -45px;
    width: 100%;
    color: #000000;
    padding: 10px 5px;
    background: linear-gradient(45deg, rgba(21,82,153,1) 0%,rgba(144,192,229,.4) 100%);
    transition: all .5s;
  }
  .singleBlog:hover .blogContent{
    bottom: 0;
    transition: all .5s;
  }
  
  .blogContent h3{
    font-size: 20px;
    font-weight: 500;
    margin: 0;
  }
  .blogContent h3 span{
    display: block;
    font-size: 60%;
    margin-top: 5px;
    font-weight: 600;
    color: rgba(52, 73, 94,1.0)
  }
  
  .blogContent a{
    font-size: 14px;
    font-weight: 500;
  }
  .blogContent .btn{
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #000000;
    border-radius: 3px;
    font-weight: 400;
  }
  .blogContent .btn:hover{
    background: rgba(52, 152, 219,1.0);
    transition: all .5s;
    text-decoration: none;
  }
  .blogContent a:hover{
    text-decoration: underline;
  }
  
  
  
  @media (max-width:948px) {
    .singleBlog{
      grid-template-columns: repeat(2, 1fr);
      width: 40%;
    grid-gap: 5px;
    }
  }
  @media (max-width:690px) {
    .singleBlog{
      /* grid-template-columns: repeat(2, 1fr); */
      width: 100%;
    grid-gap: 15px;
    }
    .blogContent{
      bottom: 0;
    }
  }
  @media (max-width:500px) {
  
      .singleBlog{
        /* grid-template-columns: repeat(1, 1fr); */
      }
  }  


 /* contact section styling */
 .contact{
    /* background: url("images/leaves_bushes_green_174515_3840x2400.jpg"); */
    background-size: 2000px;
 }
 .contact .title::after{
     content: "Get in touch";
 }

 .contact .contact-content .column{
     width: calc(50% - 30px);
 }
 .contact .contact-content .text{
     color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;  
}
 .contact .contact-content .left p{
     text-align: justify;
 }
 .contact .contact-content .left .paragraph-3{
     font-size: 18px;
     color: rgb(0, 0, 0);
 }
 .contact .contact-content .left .icons{
     margin: 10px 0;
 }
 .contact .contact-content .row{
     display: flex;
     height: 65px;
     align-items: center;
 }
 .contact .contact-content .row .info{
     margin-left: 30px;
 }
 .contact .contact-content .row i{
     font-size: 25px;
     color: rgb(0, 0, 0);
 }
 .contact .contact-content .info .head{
     color: rgb(0, 0, 0);
     font-weight: 500;
 }
 .contact .contact-content .info .sub-title{
    color: rgb(0, 0, 0);
}
.contact .right form .fields{
   display: flex;
}
.contact .right form .field,.contact .right form .fields .field{
   height: 45px;
   width: 100%;
   margin-bottom: 15px;
}

.contact .right form .textarea{
   height: 80px;
   width: 100%;

}
.contact .right form .name{
    margin-right: 10px;
}

.contact .right form .email{
    margin-left: 10px;
}

.contact .right form .field input,.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border:2px solid rgb(5, 5, 5);
    color: rgb(0, 0, 0);
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    background: none;
    font-family: 'Poppins', sans-serif;
}
.contact .right form .textarea textarea{
     padding-top: 10px;
     resize: none;
}
.contact .right form .button{
    height: 47px;
    width: 170px;
}

.contact .right form .button button{
    width: 100%;
    height: 100%;
    border: 0.1px solid rgb(0, 0, 0);
    background: none;
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.contact .right form .button button:hover{
    background: none;
    color: #1701a7;
}

/* footer styling */
footer{
    /* background: url("images/dark-green-leaves-background-hydrangea-260nw-1699508995.jpg") ; */
    padding: 20px 23px;
    color: rgb(0, 0, 0);
    margin-bottom: 0px;
}

footer .text-center {
    text-align: center !important; }

footer span{
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}
footer span a{
    color: #1701a7;
    transition: color 0.3s ease;
}
footer i{
    padding-left: 10px;
    font-size: 25px;;
    color: rgb(0, 0, 0);
    transition: color 0.3s ease;
}
footer span a:hover{
    color: rgb(0, 0, 0);
}
footer i{
    font-size: 27px;
}
footer i:hover{
    color: #1701a7;
}

/* CSS for scroll to top button */

#btnScrollToTop{
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f9fbfa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    color: #120089;
    border: 2px;
    outline: none;
    cursor: pointer;
    z-index:9999;
}

#btnScrollToTop:active, #btnScrollToTop:hover{
    background: #fbfbfb;
    box-shadow: 0px 0px 20px rgb(0, 0, 0);
}

.progress-container {
    width: 100%;
    height: 4px;
    top: 0;
    position: absolute;
    background: transparent;
  }

  /* .progress-bar {
    height: 4px;
    background: rgb(87,142,84);
  } */
  
  @-webkit-keyframes glow {
    from {
      text-shadow: 0 0 0px rgb(154, 233, 158), 0 0 10px rgb(116, 180, 137), 0 0 20px #79dd97, 0 0 30px #60d3a7, 0 0 40px #43f091, 0 0 50px #24e4a4, 0 0 60px #00ff95;
    }
    
    to {
      text-shadow: 0 0 20px rgb(168, 223, 171), 0 0 30px rgb(62, 172, 95), 0 0 40px #79dd97, 0 0 50px #60d3a7, 0 0 60px #43f091, 0 0 70px #24e4a4, 0 0 80px #00ff95;
    }
  }


  ::-webkit-scrollbar {
    width: 5px;
    height: 0px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #ffffff; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(0, 0, 0);
    margin-bottom: 0px; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #578e54; 
  }

/* response media query starts */
@media (max-width: 1300px) {
   .home .max-width{
       margin-left: 0px;
   }
}
@media (max-width: 1104px) {
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
 }
@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
}
@media (max-width: 947px) {
    
    .max-width{
        padding: 0 50px;
    }
    .menu-btn{
       display: block;
       z-index: 999;
    }
    .menu-btn i.active {
        visibility: hidden;
    }
    .menu-btn i.active::before {
        visibility: visible;
        position: absolute;
        content: "\e5cd";
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left:-100%;
        top: 0;
        background: black;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }

    .home .home-content .text-2 {
        font-size: 70px;
    }
    
    .home .home-content .text-3 {
        font-size: 35px;
    }
    .max-width{
        max-width: 800px;
    }
    .about .about-content .column{
        width: 100%;   
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }
    .services .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    /* .blogs .blogs-content .column{
        width: 100%;
        margin-bottom:35px ;
    } */
}
@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-2 {
        font-size: 60px;
    }
    .home .home-content .text-3 {
        font-size: 32px;
    }
    .services .serv-content .card, .contact .contact-content .column{
        width: 100%;
    }
}
@media (max-width: 500px) {
    .home .home-content .text-2 {
        font-size: 50px;
    }
    .home .home-content .text-3 {
        font-size: 27px;
    }
}







