@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Nunito Sans", sans-serif;
  -webkit-tap-highlight-color: transparent;
}
:root {
  --white: #fff;
  --black: #000;
  --blue: #4c50e7;
  --bgBlue: #002b54;
  --orange: #f2843a;
  --font: sans-serif;
}
body {
  background-color: white;
  color: black;
  transition: background-color 0.5s;
}
/* .light-mode {
  background-color: #fff;
  color: #000000;
}
.dark-mode {
  background-color: black;
  color: white;
} */
section {
  height: 100svh;
}
.animatedContent {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  -o-transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.animatedContent.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.reveal {
  position: relative;
  -webkit-transform: translateY(150px);
  -ms-transform: translateY(150px);
  transform: translateY(150px);
  opacity: 0;
  -webkit-transition: all 1.3s ease;
  -o-transition: all 1.3s ease;
  transition: all 1.3s ease;
}

.reveal.active {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}
.home {
  display: -webkit-box;
  display: -ms-flexbox;
  margin: 70px 50px 40px 50px;
  height: fit-content;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mission-container,
.our-products-container,
.ourServices-container,
.invoice-container,
.Img2Text-container,
.gst-container {
  margin-top: 130px;
  padding: 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.invoice-container,
.Img2Text-container,
.gst-container {
  margin-top: 80px;
}
.mission-content,
.ourServices-content,
.our-products-content {
  padding: 20px 75px;
  text-align: center;
}
.weare-content,
.services-content,
.products-content {
  max-width: 480px;
}
.weare-imgbox,
.services-imgbox,
.products-imgbox {
  max-width: 35%;
}
.weare-img,
.services-img,
.products-img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  /* filter: opacity(0.8);
  -webkit-filter: opacity(0.8);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease; */
}
/* .services-img:hover {
  transition: all 0.3s ease;
  filter: opacity(1);
  -webkit-filter: opacity(1);
} */
.box-one {
  -webkit-animation-name: floating;
  animation-name: floating;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.home-img {
  max-width: 100%;
  width: 35rem;
  height: auto;
}

.box-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 40%;
}
.samll-title > p {
  color: rgb(163, 161, 161);
  font-size: 1rem;
}
.headding,
h5 {
  color: rgb(44, 46, 49);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 48px;
}

.text,
h6 {
  color: rgb(105, 114, 122);
  margin-top: 10px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
.btns {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.btn-btm {
  display: none;
}
#btn1 {
  background-color: orange;
}
#btn2 {
  background-color: rgb(255, 4, 4);
}
.home-btn1 {
  display: inline-block;
  border-radius: 26px;
  background-color: var(--blue);
  border: none;
  color: #fcf0d3;
  text-align: center;
  font-size: 15px;
  padding: 12px 22px;
  width: 13.5rem;
  transition: all 0.5s;
  cursor: pointer;
  margin-top: 20px;
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 2;
}

.home-btn1 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.home-btn1 span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.5s;
}

.home-btn1:hover span {
  padding-right: 15px;
}

.home-btn1:hover span:after {
  opacity: 1;
  right: 0;
}
.home-btn2 {
  display: inline-block;
  border-radius: 26px;
  border: 1px solid var(--blue);
  background: none;
  color: var(--blue);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  width: 8rem;
  transition: all 0.5s;
  cursor: pointer;
  margin-top: 20px;
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 2;
}
.home-btn2:hover {
  background-color: var(--blue);
  color: #fff;
}
.wrkbtn {
  margin-top: 0;
}
.vickey-clients {
  height: fit-content;
}
.clients-container {
  background: rgba(238, 240, 244, 1);
  width: 100%;
  padding: 40px 60px;
  margin-top: 20px;
}
.img-clients {
  width: 100%;
  height: auto;
}
.smart-solutions,
.our-apps,
.whyus,
.clients-reviews,
.workflow,
.aboutUs-mission,
.aboutUs-weare,
.ourServices,
.our-products,
.ourServices-cards,
.products,
.contact-us,
.invoice-generator,
.Img2Text-generator,
.gst-calculator,
.OurTechExpertise,
.IndustriesWeServe {
  height: fit-content;
  margin-bottom: 40px;
}

.smart-solutions,
.whyus,
.workflow-container {
  background: #f8fafc;
}

.smart-sol-container,
.our-apps-container,
.whyus-container,
.reviews-container,
.workflow-container,
.weare-container,
.services-container,
.products-container,
.programing-container {
  padding: 20px 80px;
}
.contactUs-container {
  margin-top: 100px;
}
.weare-container,
.services-container,
.products-container {
  margin: 100px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.smart-sol-title,
.our-apps-title,
.whyus-title,
.reviews-title,
.workflow-title,
.mission-title,
.weare-title,
.ourServices-title,
.services-title,
.our-products-title,
.products-title,
.contactUs-title,
.invoice-title,
.gst-title {
  color: rgb(44, 46, 49);
  text-align: center;
  margin-top: 40px;
  font-weight: 800;
  font-size: 36px;
  line-height: 48px;
}
.invoice-title,
.gst-title {
  margin-bottom: 30px;
}
.weare-title,
.services-title,
.products-title {
  text-align: start;
  margin-top: 0;
}
.smart-card-container,
.whyus-content,
.reviews-carousel {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.workflow-content {
  margin-top: 10px;
  text-align: center;
}
.smart-card-title,
.whys-con-title {
  color: rgb(44, 46, 49);
  font-size: 24px;
  padding: 10px 0;
  line-height: 32px;
  font-weight: 700;
}
.smart-card-pera,
.whys-con-pera {
  color: rgb(105, 114, 122);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 30px;
}
.mission-pera,
.ourServices-pera,
.our-products-pera {
  font-size: 24px;
  line-height: 48px;
  color: rgb(44, 46, 49);
  font-weight: 300;
}
.weare-pera,
.services-pera,
.products-pera {
  color: rgb(105, 114, 122);
  margin-top: 25px;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  text-align: justify;
}
.reviews-pera {
  margin-top: 20px;
  text-align: center;
  padding: 0 100px;
}
.smart-card {
  width: 25%;
  padding: 25px;
  margin: 25px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}
.smart-card-img > img {
  max-width: 30%;
}
a {
  text-decoration: none;
  color: var(--blue);
}

.whyus-conbox {
  text-align: center;
  width: 25%;
}
.copy-box {
  display: flex;
  justify-content: center;
  color: #fff;
  padding: 60px 0 15px 0;
}
/* .copyright {
  position: absolute;
  bottom: 30px;
} */
.bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
}
/* Scrollbar Styling */
/* ::-webkit-scrollbar {
  width: 10px;
} */

/* ::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
} */

/* ::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--blue);
} */

/* .waves > use {
  animation: move-forever 2s -2s linear infinite;
}

.waves > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 6s;
}
.waves > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 3s;
}

@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

.footer-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30vw;
  max-height: 200px;
} */
/* about us page contnent styling */
.contactUs {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  padding-top: 100px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.contactUs-title > h1 {
  font-size: 3rem;
  margin: 20px;
}
.pro-img > p {
  margin-top: 5px;
  font-size: 10px;
  text-align: center;
}
.pro-img {
  width: 100px;
  height: 100px;
  background: #f8fafc;
  padding: 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.OurTechExpertise,
.IndustriesWeServe {
  padding: 0 10px;
}

.techex-title {
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
}
.porod-tlbox {
  display: flex;
}
.arrow-pro {
  width: 30px;
  transform: scaleX(-1);
  rotate: 357deg;
}
.prog-title {
  text-align: start;
}
.programing-icons {
  display: flex;
  gap: 30px;
}
.prog-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 25px 0;
}
.fullstack,
.cloud {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.pro-img > img {
  width: 60px;
}
.hr-ar-blg-box > h2 {
  margin: 10px 0;
}
.indus-p {
  text-align: center;
}

.aboutUs-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 10px;
}
.about-card > img {
  width: 3rem;
  mix-blend-mode: multiply;
  filter: contrast(1);
  border-radius: 6px;
  margin-bottom: 5px;
}
.about-card > p {
  font-size: 1rem;
}
.about-card {
  width: 10rem;
  height: 10rem;
  border-radius: 16px;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in;
  cursor: pointer;
}
.about-card:hover {
  scale: 1.1;
}
.indusworkflow-title {
  color: rgb(44, 46, 49);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 200;
}
.motive-box {
  width: 20rem;
  height: 12rem;
  border-radius: 16px;
  border: 5px solid var(--blue);
  transition: 0.5s;
  padding: 10px;
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
.motive-box:hover {
  color: white;
  background: var(--blue);
  scale: 1.1;
}

.motive-box > h3 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}
.motive-box > p {
  font-weight: 400;
}

/* media Quaries */
@media only screen and (max-width: 1017px) {
  .smart-card {
    width: 100%;
    padding: 20px 30px;
    margin: 10px;
  }
  .smart-card-img > img {
    max-width: 10% !important;
  }
  .smart-card-title {
    padding: 0 0 10px 0;
    margin: 0;
  }
  .smart-card-pera {
    margin-bottom: 10px;
  }
  .mission-content,
  .ourServices-content,
  .our-products-content {
    padding: 10px 0;
  }
}
/* @media only screen and (max-width: 985px) {

} */
@media (max-width: 860px) {
  .home {
    flex-direction: column;
    height: fit-content;
    margin: 100px 50px 10px 50px;
  }
  .box-one {
    margin-top: 15px;
  }
  .box-two {
    text-align: center;
    padding: 0;
    width: 70%;
  }
  .btns {
    display: none;
  }
  .btn-btm {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .home-btn1-btm {
    width: 80%;
  }
  .whyus-content {
    flex-direction: column;
  }
  .whyus-conbox {
    width: 100%;
  }
  .weare-content,
  .services-content,
  .products-content {
    max-width: 100%;
  }
  .weare-container,
  .services-container,
  .products-container {
    flex-direction: column;
    align-items: center;
  }
  .column-reverse {
    flex-direction: column-reverse;
  }
  .weare-imgbox,
  .services-imgbox,
  .products-imgbox {
    margin-top: 20px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 698px) {
  .home {
    margin: 100px 20px 10px 20px !important;
  }
  .box-two {
    width: 100% !important;
  }
  .smart-sol-container,
  .our-apps-container,
  .whyus-container,
  .reviews-container,
  .workflow-container,
  .mission-container,
  .weare-container,
  .ourServices-container,
  .services-container,
  .products-container,
  .our-products-container,
  .invoice-container,
  .Img2Text-container,
  .gst-container {
    padding: 20px 20px;
  }
  .weare-container,
  .services-container,
  .products-container {
    margin: 0 !important;
  }
  .mission-container,
  .ourServices-container,
  .our-products-container,
  .invoice-container,
  .Img2Text-container,
  .gst-container {
    margin-top: 50px;
  }
  .weare-pera,
  .services-pera,
  .products-pera {
    line-height: 28px;
  }
  .reviews-pera {
    margin-top: 20px;
    text-align: center;
    padding: 0;
  }
  .smart-card {
    width: 100%;
    margin: 10px;
  }
  .copy-box {
    font-size: 10px;
  }
}
@media only screen and (max-width: 645px) {
  .pro-img {
    width: 70px;
    height: 70px;
  }
  .prog-box {
    align-items: center;
  }
  .pro-img > img {
    width: 40px;
  }
  .programing-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .fullstack,
  .cloud {
    gap: 0;
  }
}
@media only screen and (max-width: 430px) {
  .home {
    margin: 100px 0 10px 0;
  }
  .smart-card-img > img {
    max-width: 15% !important;
  }
  .arrow-pro {
    display: none;
  }
  .icon {
    width: 5rem;
    height: 5rem;
  }
  .icon > img {
    width: 4rem;
    height: 4rem;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .headding,
  h5 {
    font-size: 32px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 320px) {
  section {
    height: fit-content;
  }
  .home {
    margin: 100px 10px 10px 10px !important;
  }
  .headding,
  h5 {
    font-size: 1.5rem !important;
  }
  .copy-box {
    font-size: 8px;
  }
}
.slide-img{
  width: 300px;
  
}