* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-family: 'work Sans', sans-serif;

}

:root {

  --heading: rgb(10, 19, 49);
  --para: #777777;
  --overlayColor: #4d8292;
  --bg: rgb(75, 75, 133);
  --icon-bg: rgba(144, 172, 209, 0.2);
  --gradient: linear-gradient(0deg, rgb(132 144 255) 0%, rgb(98 189 252) 100%);
  --gradientSupport: -webkit-linear-gradient(0deg,
      rgb(132 144 255) 0%,
      rgb(98 189 252) 100%);
  --shadow: 0px 0px 20px 20px rgb(132 144 255 / 20%);
  --shadowSupport: 0px 0px 20px 20px rgb(132 144 255 / 30%);
}

html {
  font-size: 62.5%;
  /* 1rem=10px */
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;

}

h1 {
  color: var(--heading);
  font-size: 6rem;
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  font-weight: 400;
}

p {
  /* color: white; */
  line-height: 1.6;
  font-size: 1.7rem;
}

a {
  text-decoration: none;

}

li {
  list-style: none;
}

.btn {
  background: var(--gradientSupport);
  padding: 1.5rem 2.0rem;
  position: relative;
  border: none;
  border-radius: 20% 20%;
  color: var(--helper-tint);
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
input .btn{
  padding: 0%;
}

.btn:hover {
  box-shadow: 0px 20px 20px 0px rgb(132 144 255 / 30%);
  box-shadow: var(--shadowSupport);
}

.section {
  padding: 9rem 0;

}

.container {
  max-width: 140rem;
  margin: 0 auto;

}

.grid {
  display: grid;
  gap: 9rem;
}

.grid-two-column {
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-columns: 1fr 1fr; */
}

.grid-three-column {
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-columns: 1fr 1fr; */
}

.grid-four-column {
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-columns: 1fr 1fr; */
}


/* header section start */

.header {
  padding: 0 4.8rem;
  height: 10rem;
  background-color: var(--bg);
  background: rgb(80, 112, 143);
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.header .logo {
  height: 8rem;
}

.navbar-lists {
  display: flex;
  gap: 4.8rem;
  font-size: large;
}

.navbar-link:link,
.navbar-link:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
  transition: all 0.3s linear;
}

.navbar-link:hover,
.navbar-link:active {
  color: var(--helper);
}

.mobile-navbar-btn {
  /* by default for normal screen we want to hide  */
  display: none;
  background: transparent;
  cursor: pointer;
  border: none;
}

.mobile-nav-icon {
  width: 5rem;
  height: 5rem;
  color: #4b5b6b;
}

/* for desktop or mobile menu-outline one must be visible  
  and we need to hide the close menu icon
  */
.mobile-nav-icon[name="close-outline"] {
  display: none;
}

/* sticky Navbar */
.sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  height: 8rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding-top: 0;
  padding-bottom: 0;
}


/* hero section start */
.section {
  padding: 0 5rem;
}

.section-hero {
  background-color: var(--bg);
}

.section-hero-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-hero-data p {
  color: white;
}


.hero-top-data {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.5rem;
  color: white;
}

.hero-heading {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 6.4rem;
}

.hero-para {
  margin-top: 1.5rem;
  margin-bottom: 5rem;
  max-width: 60rem;
}

.section-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 90%;
  height: 100%;
  border-radius: 50%;
}

/* ****** bio section start ******** */

.bio-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bio-image-img {
  width: 80%;
  box-shadow: -2rem --2rem 0 0 var(--helper);
  display: inline-block;
}

.common-heading {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 6rem;
  text-transform: capitalize;
  position: relative;
}

.common-heading::before {
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--para);
}

.common-heading::after {
  content: "";
  position: absolute;
  top: 128%;
  left: 1.5rem;
  width: 30%;
  height: 0.3rem;
  background: var(--para);
}



.bio-data-stats {
  padding: 6.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.bio-progress-bar {
  /* margin-left: 0%; */
  width: 90%;
  height: 0.8rem;
  background-color: var(--para-tint);
  border-radius: 10rem;
  box-shadow: var(--shadow);
  position: relative;

}

.bio-progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: inherit;
  background: var(--gradientSupport);
  border-radius: 10rem;
}

.bio-progress-2::before {
  width: 90%;
}

.bio-progress-3::before {
  width: 80%;
}

.bio-progress-4::before {
  width: 75%;
}

.bio-progress-5::before {
  width: 70%;
}

.bio-progress-bar span {
  position: absolute;
  top: 1.8rem;
  width: 4rem;
  height: 2rem;
  background: var(--helper);
  color: white;
  justify-content: center;
  align-items: center;
  border: none;
  outline: 0;
}

.bio-progress-bar span {
  left: 80%;
}

.bio-progress-2 span {
  left: 90%;
}

.bio-progress-3 span {
  left: 80%;
}

.bio-progress-4 span {
  left: 75%;
}

.bio-progress-5 span {
  left: 70%;
}

/* ***** portfolio work start ****** */

.section-portfolio {
  background: var(--bg);
  /* transition: all 0.7s linear; */
}

.section-portfolio p,
.section-services p {
  max-width: 60rem;

}

.p-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  margin-top: 6.4rem;
  margin: 6.4rem 0;
}

.portfolio-images {
  gap: 3.2rem;
  margin: 6.4rem 0;
}

.portfolio-images img {
  width: 100%;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}

.img-overlay {
  position: relative;
  overflow: hidden;
}

.img-overlay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradientSupport);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  transition: all 0.3s linear;
  border-radius: 7px;
}

.img-overlay:hover > .overlay {
  transform: translateY(0);
  opacity: 0.5;
  cursor: pointer;
}

.img-overlay .common-heading {
  margin: 0;
  color: white;
  text-decoration: none;
}

/* .p-btn:hover{
        transform: translateY(-1rem);
    } */
.p-btn-active {
  transform: translateY(-1rem);
}

.p-image-not-active {
  display: none;
}

/* ***** work data section started ***** */

.section-work-data {
  background: var(--gradientSupport);
  text-align: center;
  color: white;
}

.counter-numbers {
  font-size: 4.8rem;
}

.section-work-data p {
  /* color: var(--white); */
  color: white;
  text-transform: capitalize;
}

/* ****** service section start ****** */

.section-services p {
  max-width: 60rem;
}

.section-services .grid {
  margin-top: 6rem;
  row-gap: 6rem;
}

.service-box {
  text-align: center;
  box-shadow: var(--shadow);
  border-radius: 5rem;
  padding: 6.4rem 3.4rem;
  transition: all 0.2s linear;
}

.service-box:hover {
  transform: translateY(-3rem);
}

.service-icon {
  width: 8rem;
  height: 8rem;
  background-color: var(--icon-bg);
  display: inline-block;
  border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
  padding: 1.4rem 1.8rem;
  position: relative;
  color: var(--heading);
  animation: water-wave 3s linear infinite;
}

.service-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border: 1px solid rgba(11, 15, 20, 0.9);
  border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
  background-color: transparent;
  animation: water-wave 3s linear infinite alternate;
}

@keyframes water-wave {
  0% {
    border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
  }

  50% {
    border-radius: 3% 97% 15% 85% / 72% 0% 100% 28%;
  }

  100% {
    border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
  }
}

.service-box h3 {
  text-transform: capitalize;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

/* ******swiper section start ****** */

.swiper {
  width: 100%;
  height: 100%;
  margin-top: 9rem;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide {
  width: 80%;
}

.swiper-slide:nth-child(2n) {
  width: 60%;
}

.swiper-slide:nth-child(3n) {
  width: 40%;
}

.swiper-client-msg {
  padding: 5rem 8rem;
  background: var(--white);
  border-radius: 1rem;
  text-align: left;
  box-shadow: var(--shadow);
  position: relative;
}

.swiper-client-msg::before {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
  border: 5rem solid var(--white);
  border-color: transparent;
  border-top-color: var(--helper-tint);

}

.swiper-client-msg p::before {
  content: "\f10d";
  /* ****isme slash lgana h content  m m ****** */
  position: absolute;
  top: 0;
  left: 2rem;
  font-size: 5rem;
  color: #ced3ff;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";

}

.swiper-client-msg p::after {
  content: " \f10e";
  /* ****isme slash lgana h content  m m ****** */
  position: absolute;
  bottom: 0;
  right: 2rem;
  font-size: 5rem;
  color: #ced3ff;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";

}

.swiper-client-data {
  align-items: center;
  margin-top: 3.2rem;
  gap: 3.2rem;
}

.swiper-slide img {
  /* display: block; */
  /* width: 100%; */
  height: 10rem;
  /* object-fit: cover; */
  max-width: 10rem;
  border-radius: 50%;
  border: 0.5rem solid var(--helper-tint);
}

/* ****** frontend section started ****** */
.section-frontend {
  background-image: url("../images/folio2.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
  position: relative;
  transition: all 0.5s linear;
  text-align: center;
}

.section-frontend .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--helper);
  background-color: var(--overlayColor);
  opacity: 0.5;
}

.section-frontend .container {
  position: relative;
}

.section-frontend h2 {
  font-size: 5.0rem;
}

.section-frontend span {
  color: rgb(143, 143, 69);
}

.section-frontend h2,
.section-frontend p {
  color: white;
  margin-bottom: 1.8rem;
}

/* ********contact section start ******* */

.section-contact-main {
  max-width: 70rem;
  margin: 0 auto;
  margin-top: 9rem;
  /* transition: all 0.3s linear; */
}

.section-contact-main form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-contact-main .grid {
  gap: 2.4rem;
}

.section-contact-main input,
 textarea {
  padding: 1.5rem 2rem;
  border: 0.1rem solid #c9c9c9;
  border-radius: 5px;
  font-size: 1.6rem;
  width: 100%;
  font-family: "work sans";
}

.section-contact-main textarea {
  height: 15rem;
}
.section-contact-main input[type="submit"] {
  max-width: 22%;
  border: none;
  margin-bottom: 20px;
}

/* *******footer section started****** */
.section-footer {
  background: var(--heading);
  transition: all 0.5s linear;
}

.section-footer h3 {
  color: aliceblue;
  margin-bottom: 4rem;
  font-size: 2.6rem;
}

.f-about p {
  color: #517c86;
}

.f-links ul,
.f-services ul,
f-address address {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  justify-content: center;

}

.f-links li,
.f-links a,
.f-services li,
.f-services a {
  font-size: 1.8rem;
  color: #517c86;
  text-transform: capitalize;

}

.f-links span,
.f-services span,
.f-address span {
  margin-right: 1rem;

}

.f-address p {
  font-style: normal;
  color: #adadad;
}

.f-social-icons {
  margin: 5rem 0;
  text-align: center;
  color: #adadad;
}

.f-social-icons .icons {
  width: 4rem;
  height: 4rem;
  background-color: var(--icon-bg);
  display: inline-block;
  padding: 1.4rem 1.8rem;
  position: relative;
  color: var(--white);
  cursor: pointer;
  animation: water-wave 3s linear infinite;
}

.f-credits p {
  text-align: center;
  color: #adadad;
}

.footer a:hover,
.footer a:active {
  color: var(--white);
}

/* *******scroll section start ******* */
.scrollTop-style {
  position: fixed;
  right: 2%;
  bottom: 5%;
  z-index: 1;
}

.scroll-top {
  width: 3rem;
  height: 4rem;
  background: #8490ff;
  position: relative;
  display: inline-block;
  padding: 1.4rem 1.8rem;
  animation : water-wave 3s linear infinite;
}

/* *******media query******* */


@media (max-width: 75em) {
  html {
    font-size: 56.25%;

  }

  .container {
    max-width: 110rem;
  }

  .grid {
    gap: 4.8rem;
  }
}

/* *****for 980px ***** */
@media (max-width: 980px) {
  html {
    font-size: 50%;
  }

  .header {
    position: relative;
  }

  .mobile-navbar-btn {
    display: block;
    z-index: 9999;
    border: 3px solid rgb(99, 68, 68);
    color: #212529;
  }

  .mobile-nav-icon {
    width: 5rem;
    height: 5rem;
    color: #212529;

  }

  .header .logo {
    width: 40%;

  }

  .navbar {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: all 0.5s linear;
    /* display: none; */
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: 999;
  }

  .navbar-lists {
    flex-direction: column;
    align-items: center;
  }

  .navbar.navbar-lists .navbar-link :link,
  .navbar.navbar-lists .navbar-link :visited {
    color: #212529;
    font-size: 3.2rem;
  }

  .active .navbar {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .active .mobile-navbar-btn .mobile-nav-icon[name="menu-outline"] {
    display: none;

  }

  .active .mobile-navbar-btn .mobile-nav-icon[name="close-outline"] {
    display: block;
  }


  /* *****hero section***** */

  .section-hero h1 {
    line-height: 1.05;
  }

  /*  service section */
  /* .section-services .grid{
      gap: 6rem;
    } */

  .section-services .grid-three-column {
    grid-template-columns: repeat(2, 1fr);

  }

  .section-footer .grid-four-column {
    grid-template-columns: 1fr 1fr;
  }
}

/* ******below 790px***** */
@media(max-width:49em) {
  .container {
    max-width: 71rem;
  }

  .section-hero .grid-two-column {
    grid-template-columns: 1fr;

  }

  .section-hero-data {
    align-items: center;
  }

  .hero-heading {
   text-align: center;
  }

  .hero-para {
    text-align: center;
    margin-top: 2rem;
   
  }
  .section-hero img{
    width: 70%;
  }

  /*bio=data*/
  .section-biodata .grid-two-column{
    grid-template-columns: 1fr;
  }
  .section-biodata .bio-image{
    /* grid-row-start: 2;
    grid-row-end: 3;
    grid-row: 2/3; */
    grid-row: 2;
    margin-top: 3.2rem;

  }
  .section-biodata .bio-image img{
    width: 50%;
  }


   /* portfolio section */

   .section-portfolio  .grid-three-column{
    grid-template-columns: repeat(2,1fr);
   }
   /*word data*/
   .section-work-data  .grid-four-column{
    grid-template-columns: 1fr 1fr;
   }
   
  }

  /*below 560px*/

  @media(max-width: 35em){
     /* .container{
      max-width: 48rem;
     } */
     .header{
      padding: 0 3.2 rem;
     }
     .header .logo{
      width: 50%;
     }

     .section-contact-main input[type="submit"] {
      max-width: 50%;
      border: none;
    }

     /*portfolio*/
     .p-btns {
      gap: 3.2rem;
     } 
       .btn{
        padding: 1rem 2rem ;
       }
        .counter-numbers{
          font-size: 3.2rem;
        }

        /*services*/
        .section-services .grid-three-column{
          grid-template-columns: 1fr;
        }
        .section-frontend h2{
          font-size: 3rem;
        }
        .contact-container {
          padding: 0 3.2rem;
        }
        .contact-container .grid-two-column{
          grid-template-columns: 1fr;
        }
        .section-contact-main input [type="submit"] {
          max-width: 40%;
        }
        /*footer*/
        .section-footer .f-about,
        .section-footer .f-address {
          grid: 1/-1;
        }
  }