* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.2s linear;
}

body {
  font-family: "Poppins", sans-serif;
  /* line-height: 2.5; */
  background: var(--light-color);
}

:root {
  --primary-color: #ff7a00;
  --secondary-color: darkblue;
}

a {
  color: #333;
  text-decoration: none;
}

ul {
  list-style: none;
}

p {
  margin: 0.5rem 0;
}

/* img {
  width: 100%;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.55rem;
  line-height: 1.3;
}
.container {
  max-width: 1280px;
  overflow: hidden;
  margin: auto;
}

/* Navbar */

.navbar {
  background: #fff;

}
.navbar .navbar-container {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  align-items: center;
  text-align: center;
}

.logo h1 {
  font-weight: 400;
  color: var(--primary-color);
}

.navbar-container .main-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.main-menu ul li a {
  font-size: 1rem;
}
.main-menu ul li a:hover {
  color: #ff7a00;
  transition: 0.3s;
}

.menu-button{
    display: none;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1000;
    cursor: pointer;
    
}

.menu-button i{
    font-size: 1.5rem;
    transition: all 0.3s linear;
}

.fa-bars{
    transform: rotate(180deg);
}

.mobile-menu{
    display: none;
    position: fixed;
    top: 0;

    height: 100%;
    right: -350px;
    width: 250px;
    z-index: 100;
    background: #fff;
    padding-top: 100px;
    transition: right 0.3s ease-in-out;
}

.mobile-menu.active{
    right: 0;
}

@media (max-width: 670px){

    .navbar .main-menu{
        display: none;
    }

    .navbar{
        padding: 0rem 1rem;
    }

    .mobile-menu{
        display: block;
    }

    .menu-button{
        display: block;
    }

}

.mobile-menu ul li{
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 0.3px solid #908d8d;
    border-radius: 12px;
 
}

.mobile-menu ul li a:hover{
    color: var(--primary-color);
    transition: 0.3s;
}

/* showcase */
.showcase {
  background: #fff;
  position: relative;
  padding: 2.5rem;
}

.showcase::before {
  content: "";
  background: url(images/p2.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* opacity: 0.8; */
}
/* 
.showcase-container{
    height: 40vh;
    

} */

.showcase .showcase-container {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  height: 30vh;
  opacity: 0.9;
  gap: 1rem;
  margin-top: 40px;
}

.showcase .showcase-container .sh-1 {
  width: 28rem;
  background: #fff;
  padding: 13px 30px;
  text-align: center;
}

.showcase .showcase-container .sh-1 h1 {
  font-size: 2.7rem;
  font-weight: 600;
}
.showcase .showcase-container .sh-2 {
  /* width: fit-content; */
  background: var(--primary-color);
  /* padding: 0.8rem 3rem; */
  text-align: center;
  width: 20rem;
  padding: 14px 28px;
}

.showcase .showcase-container .sh-2 h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

/* counters */
.counter-wrapper {
  background: #ffebcd;
}

.counter-wrapper .counter-wrapper-container {
  padding: 3rem 0;
  display: flex;
  flex-direction: row;
  gap: 8rem;
  justify-content: center;
  align-items: center; 

   flex-wrap: wrap;
}

.counter {
  display: flex;
  flex-direction: column;
  text-align: center;
  cursor: pointer;

}
.counter h1 {
  font-size: 50px;
  margin-bottom: 0;
  font-weight: 500;
  color: #333;
}

.counter p {
  margin-top: 0px;
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

/* about */

/* .about img {
  height: 480px;
  width: 450px;
  object-fit: c;

}
.about {
  min-height: 50vh;
 
}
.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;

 
}

.abt-im {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 6rem;

  padding: 1rem 0;
  
}


.about-content .social-links a {
  padding: 0.4rem;
  background: #333;
  color: #fff;
  border-radius: 8px;
  font-size: 1.7rem;
  margin: 1rem 0;
  margin-right: 0.6rem;
}

.about-content .social-links a:hover {
  color: var(--secondary-color);
  transition: 0.8s;
} */

/* 
.about{
    min-height: 100vh;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;

}




.heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1.5rem;
    color: #333;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-style: solid;
    text-underline-offset: -1rem;
    text-align: center;
  }
  
  .about-container .image{
    padding: 3rem;
  }
  .about-container .image img{
    height: 30rem;
    width: 28rem;
    box-shadow: 2rem 2rem 0 var(--primary-color);
  }


  .about-container .row{
    display: flex;
    justify-content: center;
    align-items: center;
   
  }

  .about-content{
    border: 1px solid red;
    padding: 2rem;
    width: fit-content;
  }

  .about .social-links a {
    padding: 0.4rem;
    background: #333;
    color: #fff;
    border-radius: 8px;
    font-size: 1.7rem;
    margin: 1rem 0;
    margin-right: 0.6rem;
  }


  .about-content h1 {
    color: var(--secondary-color);
    font-size: 32px;
    width: 80%;
  }
  .about-content p {
    font-size: 0.8rem;
    width: 90%;
    line-height: 2;
    color: #333;
  } */
  


.about-container{
    min-height: 100vh;

    
    display: flex;
    flex-direction: column;
padding: 2rem 0 ;

}





.heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1.5rem;
    color: #333;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-style: solid;
    text-underline-offset: -1rem;
    text-align: center;
  }
  
  .about-container .image{
    /* padding: 3rem; */
    height: 30rem;
    width: 30rem;
    margin: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 19px rgba(0, 0, 0, 1);
    overflow: hidden;
  }
  .about-container .image img{
    /* height: 30rem;
    width: 28rem;
    box-shadow: 2rem 2rem 0 var(--primary-color); */
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

 

  .about-container .row{
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 3rem; */
    flex-wrap: wrap; 
  }

  .about-content{

    /* padding: 2rem; */
    /* width: fit-content; */
    height: 30rem;
    width: 30rem;
    margin: 2rem;
    border-radius: 0.5rem;
    /* box-shadow: 0 3px 19px rgba(0, 0, 0, 1); */
    overflow: hidden;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding-top: 50px;
/* text-align: center; */
  }

  .about .social-links a {
    padding: 0.4rem;
    background: #333;
    color: #fff;
    border-radius: 8px;
    font-size: 1.7rem;
    margin: 1rem 0;
    margin-right: 0.6rem;
  }


  .about-content h1 {
    color: var(--secondary-color);
    font-size: 32px;
  
  }
  .about-content p {
    font-size: 0.8rem;
    
    line-height: 2;
    color: #333;
  }
   -->


/* 
.about{
    min-height: 100vh;
    padding-bottom: 3rem;
}
.about .image{
    padding: 2rem;
}
.about .image img{
    height: 11rem;
    object-fit: cover;
    box-shadow: 2.5rem 2.5rem 0 1rem var(--primary-color);
}
.about .info{
    padding: 2rem;
    margin-top: 3rem;
}
.about .info h2{
    color: darkblue;
    font-size: 3rem;
}
.about .info p{
    font-size: .8rem;
    color: #444;
    margin: 2rem 0;
}
.about .info .icons a{
    font-size: 2rem;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    text-align: center;
    background: #333;
    color: #fff;
    border-radius: .5rem;
    margin-right: 1rem;
    text-decoration: none;
}
.about .info .icons a:hover{
    background: var(--secondary-color);
}
 */


/* services */

.services {
 
  height: 100%;
  
}

.services-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 

   padding: 2rem 0;
}

 .services-container .services-content {
    width: 90%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  
}

.services-content .works {
  /* border: 1px solid red; */
  height: 16rem;
  width: 16rem;
  box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
  border-left: .5rem solid var(--primary-color);
  border-right: .5rem solid var(--primary-color);
  border-radius: .5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* padding-top: 3rem; */
  
}
/* give the width of text 100% */

.works a {
  font-size: 2rem;
  color: var(--secondary-color);

  margin-bottom: 1rem;
}

.works p {
  font-size: 0.8rem;
}

/* project */
.project {
  background: #333;
}

.project .project-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
  height: 100%;
}

.project .project-container h1 {
  color: #fff;
}

.project .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.project .box-container .box {
  height: 17rem;
  width: 16rem;
  margin: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 3px 19px rgba(0, 0, 0, 1);
  overflow: hidden;
}

.project .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.project .box-container .box img:hover{
  transform: scale(1.4);
 
}

/* contact */
.contact-container {
  display: flex;
  flex-direction: column;
  padding: 3rem 0;
  justify-content: center;
  /* border: 1px solid red; */
  
}

.contact-container h1 {
  text-align: center;
}

.contact-container .contact-links {
  display: flex;
  gap: 10rem;
  /* justify-content: space-between; */
  align-items: center;
  padding: 3rem 0;
 
  justify-content: center;

  /* border: 1px solid red; */
  flex-wrap: wrap;
 
}

.contact-links .ct-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.ct-l a {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.ct-l p {
  font-size: 1.3rem;
}


.contact-form {
  padding: 2rem;
  

  box-shadow: 0 .5rem 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 0 2.5rem;
  justify-content: center;
  
}

.contact-form input, textarea{
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 6px;
}

.contact-form input[type="email"]{

    height: 3rem;
    padding: 0.7rem;
    
}

.contact-form textarea{
    padding: 0.7rem;
    
}



.form-name {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.form-name input {
  width: 50%;
  height: 3rem;
  padding: 0.7rem;
  outline: none;
 
}

.contact-form input[type='submit']{
    width: fit-content;
    padding: 13px 18px;
    color: #fff;
    background: var(--secondary-color);
    font-size: 1rem;
    cursor: pointer;
    
}

/* footer */

.footer-container{
    /* border: 1px solid red; */
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    justify-content: center;
    background: #333;
    color: #9c9a9a;
    
}


@media (max-width:860px) {
    
    .footer-container{
        /* border: 1px solid red; */
        padding: 2rem;
        display: flex;
        flex-direction: column;
        
        gap: 1rem;
        justify-content: center;
        background: #333;
        color: #9c9a9a;
        
    }
    
}
.footer-content{
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    text-align: center;
    /* flex-wrap: wrap; */
}

.footer-content h1{
    font-size: 1.5rem;
}

.footer-content p{
    font-size: .7rem;
}

.footer-content a{
    color: #9c9a9a;
    margin: 0.5rem 0;
    font-size: 0.85rem;
}

.footer-content a:hover{
    color: var(--secondary-color);
    transition: 0.5s;
}

.footer-last-child{
    display: flex;
    flex-direction: column;
 align-items: center;
   text-align: center;
}

.footer-last-child h3{
    font-size: 1.1rem;
}
.footer-last-child button{
    padding: 6px 28px;
    font-size: 0.9rem;
    margin: 0.8rem 0;
    width: fit-content;
    cursor: pointer;
}

.footer-last-child input{
    height: 2.4rem;
    padding: 0.7rem;
    width: 100%;
    border-radius: 8px;
    background: #333;
   border: 1px solid #fff;
}

.footer-last-child h1{
    font-size: 1.5rem;
}

