.hero {
  display: flex;
  min-height: 90vh;
  width: 100%;
  padding: 0 1.5vw;
  align-items: center;
}

.hero .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  gap: 2.2vw;
}

h1 {
  font-size: 4.6vw;
  font-family: lufga;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.2;
}

h1 span {
  background: -webkit-linear-gradient(0deg, #2ed0d5, #b667fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .img {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .img img {
  width: 90%;
}

.hero .text p {
  font-size: 22px;
  line-height: 1.5;
}

.hero .text a {
  background: linear-gradient(90deg,
      #2ed0d5,
      #b667fe,
      #2ed0d5,
      #b667fe,
      #2ed0d5);
  background-size: 400%;
  color: white;
  padding: .9vw 1.5vw;
  font-size: 1.3vw;
  border-radius: .5vw;
}

.hero .text a:hover {
  animation: changeGradientAnimation 15s linear infinite;
}

@media (max-width: 1000px) {
  .hero {
    flex-direction: column;
  }

  .hero .text {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero .img {
    width: 85%;
    margin: auto;
    margin-top: 40px;
  }

  .hero .img img {
    width: 70%;
  }

  .hero .text a {
    font-size: 1.6vw;
    padding: 1.4vw 2vw;
    border-radius: 1vw;
  }

  .hero .text p {
    width: 70%;
    font-size: 1.5;
  }

  .hero h1 br {
    display: block !important;
  }

  .hero {
    padding-top: 50px;
  }

  h1 {
    font-size: 6.6vw !important;
  }
}

@media (max-width: 800px) {
  h1 {
    font-size: 7vw;
  }

  .hero .text a {
    font-size: 14px;
    padding: 14px 1.5rem;
    border-radius: 10px;
  }
}

@media (max-width: 750px) {
  .hero .text p {
    font-size: 14px;
    padding: 14px 1.5rem;
    width: 80%;
  }

  /* .hero{
    height: 70vh;
  } */
}

@media (max-width: 600px) {
  h1 {
    font-size: 34px;
  }

  .hero .text p {
    font-size: 16px !important;
    width: 100%;
    padding: 0;
  }

  h1 {
    font-size: 40px !important;
  }

  .hero .text {
    gap: 8px;
  }

  .hero .text a {
    margin-top: 20px;
  }

  .hero .img img {
    width: 100%;
  }
      .whyChoose_section {
        padding-top: 0;
      }
}

.whyChoose_section {
  padding: 7vw 1vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.whyChoose_section .btn_main {
  margin-top: 5vw;
}

.feature_card_area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4vw;
  margin: 0 auto;
  margin-top: 6vw;
  max-width: 1400px;
}

.feature_card_wrapper {
  max-width: 20vw;
  width: 100%;
}

.feature_card {
  width: 100%;
  border: 1px solid #00000015 !important;
  padding: 1.5vw;
  border-radius: 1vw;
  transition: 0.5s ease;
}

.feature_card:hover {
  box-shadow: 0 0 15px #00000017;
}

.feature_card>img {
  width: 5vw;
}

.feature_card>h2 {
  color: #000;
  font-size: 1.3vw;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 2vw;
}

.feature_card>p {
  color: #00000080;
  font-size: 1vw;
  margin-top: 1.5vw;
  line-height: 1.5;
}

@media (max-width: 1400px) {
  .feature_card_area {
    max-width: 80vw;
  }

  .hero h1 br {
    display: none;
  }

  h1 {
    font-size: 5.2vw;
  }

  .hero .text p {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .whyChoose_section {
    padding: 4rem 1rem;
  }

  .feature_card_wrapper {
    max-width: 220px;
  }

  .feature_card {
    border-radius: 12px;
    padding: 1.5rem;
  }

  .feature_card>img {
    width: 50px;
  }

  .feature_card>h2 {
    font-size: 18px;
    margin-top: 12px;
  }

  .feature_card>p {
    font-size: 12px;
    margin-top: 12px;
  }

  .feature_card_area {
    max-width: 900px;
  }
}

@media (max-width: 500px) {
  .feature_card_wrapper {
    max-width: 100%;
  }

  .feature_card {
    width: 100%;
  }

  .feature_card_area {
    margin-top: 3rem;
    gap: 12px;
  }
  .hero{
    min-height: unset;
  }
}
@media (max-width: 440px) {
  .hero .text h1 br{
    display: none !important;
  }
  h1{
    font-size: 34px !important;
  }
}