body{
	font-family: sans-serif;
}
h1,h2,h3,h4,h5,h6{
	font-family: serif;
}

a{
	text-decoration: none;
}

#homePage{
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 10px;
  background-color: #0f5132;
  color: #fff;
}
#heroSection{
    position: relative;
    top: 65px;
    background-size: cover;
    background-position: center;
    height: 350px;
    width: 100%;
    width: 100vw;
    margin-bottom: 70px;
}

#heroSection .info{
    position: relative;
    left: 0;
    width: 50%;
    color: #fff;
    padding: 20px;
    height: 100%;
    background-color: #0000005e;
}

.heroSectionText {
  display: inline-block;
  margin-bottom: 50px;
}
#heroSection img{
	height: 22px;
	padding: 1px;
	margin: 5px;
	border-radius: 3px;
	margin-top: 2px;
}
#heroSection a{
   color: #fff;
}

#heroSection > h1{
  margin-left: 100px;
  text-align: left;
  font-weight: bold ;
}
#heroSection .info > p{
    font-size: 15px;
    padding: 10px;
    color: #fff;
    background-color: #0000008a;
    width: 81%;
    border-radius: 10px;
  }
#heroSection .links{
    display: flex;
    flex-direction: row;
    width: 90%;
    padding: 20px;
    margin: 0px 10px;
    margin-left: 80px;
    margin-top: 80px;
}

#heroSection .links button{
    padding: 10px;
    margin: 0 10px;
    width: 150px;
}

#heroSection #hero-text{
	line-height: 1em;
	letter-spacing: -0.2px;
	color: #fff;
	font-size: 26px;
	padding: 20px;
	background-color: #198754;
	width: 40%;
	height: 400px;
	margin-top: -35px;
}

#services{
  display: flex;
  flex-direction: column;
  width: 95%;
  margin: 0 auto;
  min-height: 400px;
}

#recentWork{
  display: flex;
  flex-direction: column;
  width: 95%;
  margin: 0 auto;
  min-height: 400px;
}

#services,#recentWork > h2{
  margin: 0px auto;
  width: 100%;
  text-align: center;
  padding: 5px;
  border-bottom: 2px solid #6c757;
}
.service{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}
.recentWork{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.service-list h4{
  margin: 10px auto;
  width: 100%;
  text-align: center;
}

.recentWork-list h4{
  margin: 10px auto;
  width: 100%;
  text-align: center;
}

.service-list{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    width: 32%;
    margin: 10px;
    padding: 10px;
    text-align: left;
}

.recentWork-list{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    width: 32%;
    margin: 10px;
    padding: 10px;
    text-align: left;
}
.recentWork-list{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    width: 32%;
    margin: 10px;
    padding: 10px;
    text-align: left;
}

.service img{
  width: 100%;
  margin-left: -27px;
}
.recentWork img{
  width: 100%;
  margin-left: -27px;
}
.service-list p{
  text-align: left;
}
.recentWork-list p{
  text-align: left;
}

#testimonials {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 70px;
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: scroll; 
}
#testimonials::-webkit-scrollbar {
   display: none; /* For Chrome, Safari, and Opera */
  }
#testimonials h3{
  padding: 10px;
  margin:10px;
  text-align: center;
}

.testimonials-list{
    border-radius: 10px;
    flex: none;
    width: 40%;
    height: fit-content;
    display: inline-block;
    border: 2px solid #ccc;
    margin: 10px;
    padding: 10px;
}

.contactForm{
    background-color: darkslateblue;
    padding: 20px;
    width: 100%;
    margin: 20px 0px;
    color: #fff;
    margin-top: 100px;
    border-radius: 30px;
}
.contactForm form{
  margin: 0 auto;
  width: 40%;
}
.contactForm p,{color: #fff;}
.contactForm a{text-decoration: none;color: #fff;}
#title{display: block;}
#aboutPage{max-width: 80%;}
#aboutPage p{text-align: left;font-size: 20px;}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

      .card::after,.card::before{
        content: '';
        position: absolute;
        height: 100%;
        width: 102%;
        background-image: conic-gradient(from var(--angle), red,blue);
        top:50%;
        left:50%;
        translate: -50% -50%;
        z-index: -1;
        padding: 5px;
        border-radius: 10px;
        animation: 3s spin linear infinite;
      }
      .card::before{filter: blur(3.5px); opacity: 1}

      @keyframes spin{
        from{
         --angle: 0deg;
        }

        to{
          --angle:360deg;
        }
      }

      .flipfront{
        -webkit-transform: perspective(600px) rotateY(0deg);
        transform: perspective(600px) rotateY(0deg);
        background-color: #2d61bf;
        transition: -webkit-transform 0.5s linear 0s;
        transition: transform 0.5s linear 0s;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        color: #fff;
        border-radius: 10px;

      }

      .flipback{
        -webkit-transform: perspective(600px) rotateY(0deg);
        transform: perspective(600px) rotateY(180deg);
        background-color: #118a54;
        transition: -webkit-transform 0.5s linear 0s;
        transition: transform 0.5s linear 0s;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        color: #fff;
        margin-top: -295px;
        height: 300px;
        border-radius: 10px;
      }


      .card:hover > .flipfront{
        -webkit-transform: perspective(600px) rotateY(-180deg);
        transform: perspective(600px) rotateY(-180deg);
      }
      .card:hover > .flipback{
        -webkit-transform: perspective(600px) rotateY(0deg);
       }  


      .flip3D{
        position: relative;
        height: 250px; width: 300px;
        border-radius: 7px;
        background-color: #118a54;
        padding: 20px;
        margin: 10px;
        float: left;
      }
      .flip3D > .businessCard1{
        height: 55px;
        width: 100%;
        background-color: #118a54;
        color: #fff;
        margin: 0;
        margin-top: -19px;
        margin-left: -19px;
        padding: 20px;
        font-size: 12px;
      }

      .businessCard1 hr{
        color: #fff;
      }

      .flip3D > .businessCard2{
        height: 55px;
        width: 100%;
        background-color: #118a54;
        color: #fff;
        margin: 0;
        margin-top: -19px;
        margin-left: -19px;
        padding: 20px;
        font-size: 12px;
      }

      .flip3D > .businessCard3{
        height: 55px;
        width: 100%;
        background-color: #118a54;
        color: #fff;
        margin: 0;
        margin-top: -19px;
        margin-left: -19px;
        padding: 20px;
        font-size: 12px;
      }
      .flip3D > .businessCard1 img{
        height: 55px;
        width: 70px;
        margin-top: -20px;
        margin-left: -19px;
        object-fit: contain;
      }

      .flip3D > .businessCard2 img{
        height: 55px;
        width: 70px;
        margin-top: -20px;
        margin-left: -19px;
        object-fit: contain;
      }

      .flip3D > .businessCard3 img{
        height: 55px;
        width: 70px;
        margin-top: -20px;
        margin-left: -19px;
        object-fit: contain;
      }

      .flip3D > .back{
        position: absolute;
        -webkit-transform: perspective(600px) rotateY(0deg);
        transform: perspective(600px) rotateY(180deg);
        background-color: #118a54;
        transition: -webkit-transform 0.5s linear 0s;
        transition: transform 0.5s linear 0s;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        color: #fff;
        top: 37%;
      }
      .flip3D > .front{
        position: absolute;
        -webkit-transform: perspective(600px) rotateY(0deg);
        transform: perspective(600px) rotateY(0deg);
        background-color: #118a54;
        transition: -webkit-transform 0.5s linear 0s;
        transition: transform 0.5s linear 0s;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        color: #fff;
        top: 37%;

      }

      .flip3D:hover > .front{
        -webkit-transform: perspective(600px) rotateY(-180deg);
        transform: perspective(600px) rotateY(-180deg);
      }
      .flip3D:hover > .back{
        -webkit-transform: perspective(600px) rotateY(0deg);
        transform: perspective(600px) rotateY(0deg);
      }
      .slogan{
        position: relative;
        top: -12px;
        padding: 20px;
        font-size: 13px;
      }
      .flipback button{
        margin-top: -60px;
        height: 30px;
        width: 100px;
      }
      .flipback a {
          color: #fff;
          text-decoration: none;
    }

          .designProcess {
            width: 80%;
            margin: 0 auto;
            padding: 20px;
            background: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        h1 {
            text-align: center;
        }

        .step-title {
            font-weight: bold;
            color: #333;
            text-align: left;
        }

        footer{
          height: 100px;
          min-height: 100px;
          background: #118a54;
          color: #fff !important;
          text-align: center;
        }


@media screen and (max-width: 1024px){
  #heroSection img{
    order: 1;
    width: 103%;
    margin-top: 42px;
    height: 230px;
  }

  .service,.recentWork{
    flex-wrap: wrap;
    
  }
  .service-list,.recentWork-list{
    width: 47%;
    padding: 2px;
  }

}
      
@media screen and (max-width: 767px){

  #heroSection{
    position: relative;
    top: 50px;
    background-size: cover;
    background-position: bottom;
    height: 350px;
    width: 100%;
    width: 100vw;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
  }

  #heroSection .info {
    position: relative;
    left: 0;
    width: 100%;
    top: 0px;
    color: #fff;
    padding: 20px;
    height: 55%;
    background-color: #0000005e;
}

    #heroSection h1{
        font-family: sans-serif;
        font-style: bold;
        margin-left: -5px;
        text-align: left;
        position: relative;
        top: 0px;
        width: 70%;
        order: 1;
    }

    #heroSection .info > p {
      font-size: 15px;
      padding: 6px;
      color: #fff;
      background-color: #0000008a;
      width: 70%;
      border-radius: 10px;
  }

    #heroSection .links{
      width: 100%;
      padding: 10px;
      margin: 0px 2px;
      margin-left: 0px;
      margin-top: 110px;
    }

  .service,.recentWork{
    flex-wrap: wrap;
    
  }
  .service-list,.recentWork-list{
    width: 47%;
    padding: 2px;
  }

    .contactForm{
      width: 100%;
    }

    .contactForm form{
      margin: 0 auto;
      width: 90%;

      }
}

@media screen and (max-width: 500px){
    .service,.recentWork{
    flex-wrap: wrap;
    
  }
  .service-list,.recentWork-list{
    width: 90%;
    padding: 10px;
  }
  .service img {
    margin: 0 auto;
    width: 100%;
    margin-left: -11px;
  }
  .recentWork img {
    margin: 0 auto;
    width: 100%;
    margin-left: -11px;
  }
  .service-list,.recentWork-list p {
            text-align: left;
        margin-left: 1px;
        padding: 10px;
  }
}


@media screen and (max-width: 400px){
}
@media screen and (max-width: 320px){

}