@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



:root{
    --gray-color:#7d7d7d;
    --green-color:#08aa41;
    --blue-color:#083d8c;
}

*,*::before,*::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
html,body{
    width: 100%;
    overflow-x: hidden;
    font-family: 'Roboto' !important;
    height: 100%;
    scroll-behavior: smooth;
    
}
p{
    color: var(--gray-color);
}
.top-header{
    display: flex;
    justify-content: space-between;
    padding:0px 40px; 
    border-bottom: 1px solid gainsboro;

}
.header-address{
    display: flex;
    align-items: center;
    
}
.header-contact{
    display: flex;
    padding: 25px 10px 0px 10px;
    border-right: 1px solid gainsboro;
    gap: 8px;


}
.header-address .header-contact p{
    color:    var(--blue-color) ;
    font-size: 14px;


    }
.header-contact i{
    padding-top: 4px;
    color: var(--green-color);
    font-size: 14px;
}
.top-header .header-icon{
    display: flex;
    align-items: center;
}
.top-header .header-icon .address-icon{
    padding: 20px;
    border-left: 1px solid gainsboro;

}
.top-header .header-icon .address-icon a{
    padding: 20px;
    color: var(--green-color);
}
.top-header .header-icon  .address-search{
    
    padding: 20px;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;

}
.nav-links{
    display: flex;
    gap: 20px;
    

}
.header-bottom .nav-links li a{
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--blue-color);
}

.header-bottom{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.header-bottom .started{
    background-color: var(--green-color);
    color: white;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 20px;
}

.banner{
    background-image: url('../img/1-2.jpg');
    height: 60vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.banner .banner-text{
    position: absolute;
    right:  9%;
    bottom: 30%;
}
.banner{
    display: flex;
    align-items: end;
}
 .banner-down{
    display: flex;
    justify-content: space-around;
    width: 100%;
    background-color: #08aa418c;
    
    height: 100px;
    z-index: 1;

}

 .banner-down .banner-services{
    display: flex;
    gap: 20px;
    padding: 30px 100px;
border-right: 1px solid whitesmoke;
}
 .banner-down .banner-services:nth-child(3){
    border: none;
}

 .banner-down .banner-services img{
    height: 49px;

}
 .banner-down .banner-services i{
    font-size: 40px;
    color:whitesmoke;
}
 .banner-down .banner-services h3{
    font-size: 20px;
    line-height: 30px;
    color: whitesmoke;
}
.about-container{
    padding: 50px 0px;
}

.about h2{
    font-size: 28px;
    

}
.about-container .about{
    width: 500px;
    padding: 20px 0px;
}
.about-list{
    padding-bottom: 20px;
}
.about-list p{
    padding: 0px 0px 0px 5px;
}
.about-container .about .about-list ul li{
    line-height: 30px;
    text-align: left;

}
.about-container .about .about-list{
    width: 100%;
}
.about-container .about .about-list p::before{
    content:"✔";
    color: var(--green-color);
    padding: 5px;
    font-size: 17px;
    
}
.about-container .about-img img{
    width: 100%;
}
.about-container .about .started{
    background-color: var(--green-color);
    color: whitesmoke;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 10px ;

}
.title{
    color: #343434;
    font-weight: 700;
    font-size: 34px;
    line-height: 44px;
}

.services-container h3{
    color: #00017f;
    font-size: 17px;
}
.services-container i{
    color: #4e9806;
    font-size: 40px;
    padding: 15px 0px;
}
.services-container{
    padding: 50px 0px;
}
.services-container .Services{
    text-align: center;
}
.services-container .Services h3{
    font-size: 22px;
}
.services-container .Services p{
    color: var(--gray-color);
}
.form-banner{
    margin: 40px 0px;
    width: 100%;
    height: 100vh;
    background-image: url(../img/form-banner.webp);
    background-attachment: fixed;
}
.form-banner h1{
    font-size: 30px;
    
}
.form-banner .contact-form h3{
    font-size: 28px;
    padding: 20px 0px;
}
.form-banner .contact-form{
    background-color: white;
    width: 450px;
    text-align: center;
    padding: 30px 20px;

    border-radius: 10px;

}

.form-banner .contact-form form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

.form-banner .contact-form form input,.form-banner .contact-form form textarea{
    border-radius: 20px;
    padding: 10px 5px;

    background-color: #f5f5f5;
    outline: 1px solid #acacac;
    width: 85%;
    border: none;
}
.form-banner .contact-form form button{
    padding: 10px 20px;
    background-color: var(--green-color);
    color: whitesmoke;
    border-radius: 20px;
    outline: none;
    border: none;
    width: 80%;
    margin-bottom: 20px;
}
.form-banner .design{
    background-color: whitesmoke;
    margin: 5px;
    border-radius: 10px;
    width: 180px;
    padding: 20px 0px;
    text-align: center;
    height: 180px;
}
.form-banner .design:hover{
    background-color: var(--green-color);
    color: whitesmoke;
    
}
.form-banner .design:hover i{
    color: whitesmoke;
}
.form-banner .design h4{
    font-size: 20px;
    padding: 10px 0px;
}
.form-banner .design i{
    color: var(--green-color);
    font-size: 28px;
    
}
.form-banner .design p{
    font-size: 13px;
}
#close{
    display: none;
}
.footer{
    background-color: #0A0A0A;
    padding:40px 0px;
}
.footer ul li a,footer p,.footer h3{
    color: white;
}
.footer .footer1{
    width: 350px;
}
.footer h3{
    font-size: 1.2rem;
    padding: 5px 0px;
}
.footer .footer1 iframe{
    width: 100%;
    height: 200px;
}
footer .footer1 li a,.footer .footer1 p{
    font-size: 15px;
    color: white;
}
.footer-bottom{
    background-color: #083d8c;
    color: white;
}
.footer-bottom p a{
    color: white;
    

}

/*Contact pages****/

.sub-banner div a{
    color: black;
    font-weight: 500;

}
.contact-page-form form {
    gap: 20px;
    display: flex;
    flex-direction: column;
}
.contact-page-form form input,.contact-page-form form textarea{
    padding: 8px;
    border: none;
    outline: none;
    border-radius: 20px;
    background-color: #f5f5f5;
    outline: 1px solid #acacac;
}
.contact-page-form form button {
    padding: 8px;
    border: none;
    outline: none;
    border-radius: 20px;
    color: white;
    background-color: var(--green-color);

}
.contact-page-maps{
    width: 100%;
    margin: 20px;
    padding: 40px 0px;
}
.contact-page-maps iframe{
    width: 100%;
}

/******Our Truts*********/
.gallery-container{
    gap: 30px;
}
.galler-container .gallery-img{
    cursor: pointer;
    width: 300px;
}
.gallery-img img{
    width: 300px;

}
.scrolled{
    top:0;
    right: 0;
    width: 100%;
}

.gallery-popup{
    position: fixed;
    top:0;
    left: 0;
    background: rgba(0,0,0,0.7);
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
}
.gallery-popup span{
    position: absolute;
    font-weight: 600;
    font-size: 40px;
    padding: 10px;
    color: var(--white-color);
    cursor: pointer;
    z-index: 100;
}
.gallery-popup img{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 750px;
}
.gallery-popup img {
    animation: popup .3s  linear;
  }
  .gallery-popup button{
    border-radius: 50%;
    color: var(--white-color);
    cursor: pointer;


  } 
  #prev{
    position: absolute;
    top:50%;
    left: 22%;
    font-size: 20px;

    width: 50px;
    z-index: 999;
    height: 50px;
}
span{
    position: absolute;

}
.popupclose{
    color: black;
    width: 50px;
height: 50px;
background-color: white;
display: flex;
align-items: center;
top: 20px;
left: 20px;
justify-content: center;
border-radius: 50%;

}
#Next{
    right: 22%;
    top:50%;
    position: absolute;
    font-size: 20px;

    width: 50px;
    z-index: 999;
    height: 50px;


}
  @keyframes popup{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
  }
 
  #nav.fixed {
    position: fixed;   /* Fixed to the top of the viewport */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;      /* Ensure it's above other elements */
    background-color: rgba(0, 0, 0, 0.8); /* Darken background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Add shadow */
  }
  
  /* When scrolled, make the header slightly different */
  #nav.scrolled {
    background-color: rgba(0, 0, 0, 0.9); /* More opaque */
    position: fixed;   /* Fixed to the top of the viewport */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;      
  }
  header{
    z-index: 999;
    background-color: white;
    width: 100%;
    top:0;
    position: relative;
  }

/************Services***/
.services-banner{
    background: url('../img/services-minimal.jpg');
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
    
}
.scheme-services i{
    padding: 2px 5px;

}
.scheme-services .scheme{
    display: flex;
    align-self:center;
}
.scheme-services .scheme .investment{
    font-size: 15px;
}
.list-scheme h3{
    font-size: 22px;
    line-height: 40px;
}

.list-scheme h3::before{
    content: "+";
    font-size: 25px;
display: inline-block;
padding: 0px 5px;

}


.list-scheme h3:hover{
    color: var(--green-color);
}
.scheme-heading h3{
    font-size: 18px;
}
.scheme-heading h1{
    font-size: 25px;
}
.scheme-heading{
    width: 500px;
}
.scheme-heading img{
    width: 100%;
}
.Serivces-benefits .benefits{
    text-align: center;
}
.Serivces-benefits .benefits i{ 
    font-size: 40px;
    color: var(--green-color);
    padding: 10px 0px;

}
.Serivces-benefits .benefits h1{
    font-size: 40px;
    padding: 10px 0px;
}
.Serivces-benefits .benefits p{
    color: var(--gray-color);
    font-size: 18px;
}
.icon-boxes{
    gap: 30px;

}
.icon-boxes i{
    color: var(--green-color);
    font-size: 28px;
    padding: 15px;
}
.icon-boxes .icon-box{
    width: 350px;
    padding: 0px 10px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px #ccc;
}


/*****About Pages***/
.about .about-img{
    width: 500px;
}
.about .about-img img{
    width: 100%;
}
.about .about-progress h4{
    font-size: 20px;

}
.about .about-progress{
    width: 650px;
    max-width: 100%;
}
.about .about-progress p{
    font-size: 14px;
}
.progress-bar1 {
    width: 500px;
    display: flex;
    max-width: 100%;

    flex-direction: column;

  }
  
  .progress-bar1 p {
    font-weight: bold;
    font-size: 1;
    color: #333;
    margin-bottom: 10px;
  }
  
  .progress-bar1 .bar {
    height: 5px;
    border-radius: 5px;
    background-color: #4caf50;
    position: relative;
    margin-bottom: 10px;
  }
  
  .progress-bar1 .bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #4caf50;
    border-radius: 5px;
    transition: width 2s;
  }
  
  /* Optional animation effect for progress bars */
  @keyframes progress-fill {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  
  .progress-bar1 .bar {
    animation: progress-fill 2s ease-out;
  }
  .tek_process .tek_process_single .process-title{
    font-size: 20px;

  }
  .tek_process{
    gap: 30px;

  }

  .tek_process .tek_process_single{
    width: 300px;
    padding: 10px 4px;
    border-radius: 6px;
box-shadow: 5px 10px 15px #acacac;

  } 

  .swiper {
    width: 100%;
    height: 100%;
  }
  .team-member{
      width: 350px;
      padding: 20px;
      margin: auto;
      text-align: center;
      box-shadow: 0px 5px 15px #242222;
      height: 500px;
      border-radius: 10px;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    
    object-fit: cover;
  }
  .team-member img{
      height: 150px;
      width: 150px;

      margin:20px auto;
      border-radius: 50%;
  }

  .swiper {
    margin-left: auto;
    margin-right: auto;
  }
  .about-company {
    gap: 40px;
  }

.about-company .about-intro{
    width: 350px;
}

























/*****Reponsive***/
@media (max-width:1112px){
    header{
        z-index: 99;

    }
    .top-header{
        display: none;
    }
    header{
        position: fixed;
    }
    .header-bottom .nav-links{
        flex-direction: column;
        position: absolute;
        top:40px;
        width: 100%;
        background-color:white;
        max-height: 80vh;
        overflow-y: hidden;

    }
    .banner{
        margin-top:0px;
        margin-bottom: 20px;
    }
    .header-bottom .nav-links li a{
        font-size: 1.5rem;
        text-align: center;
    }
   .header-bottom{
    height: 40px;

   }
   .header-bottom img{
    height: 40px;
   }
    #nav-links{
height: 0vh;
overflow: hidden;
transition: 0.5s linear ; 

}
.started{
    display: none;
}
    
    #close{
        display: block;
        position: absolute;
        top:10px;
        right: 50px;

    }
    #close i{
        position: absolute;

    }
    #xmark{
        transition: 0.5s linear;
        display: none;
    }
    #close i{
        font-size: 25px;
    }
   
    .top-header p{
        display: none;
    }
    .banner{
        height: 30vh;
    }
    .banner .banner-text h1{
        font-size: 25px;
    }
    .banner-down{
        flex-direction:column;
        height: 100vh;
        bottom: 0;
        gap: 0px;
    padding: 20px 0px;
    z-index: 0;
margin: auto;        
        justify-content: center;
        
    }
    .banner .banner-down h3{
        font-size: 18px !important;
    }
    .banner-down .banner-services{
        border: none !important;
    }

}


@media (max-width:992px){
    .form-banner{
        background: none;
        height: auto;
        padding: 50px 0px;
    }
    .form-banner h1{
        text-align: center;
    }
    .form-banner p{
        text-align: center;

    }
    .form-banner .design{
        width: 300px;
        background-color: #08aa41;
       
        color: white;
    }
    .form-banner .design i{
        color: white;
    }
    .form-banner .design p{
        font-size: 18px;
        color: white;
    }
.form-banner .design h4{
    font-size: 32px;
}
    .contact-form{
        box-shadow: 0px 5px 15px #CCC;
        margin: 20px auto;
    }
.team{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;

}
.team-member{
    width: 320px;
    max-width: 100%;
    
}
}