/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 160px !important;
  margin-left: 160px !important;
} */

/* .card-body {
  padding: 33px !important;
} */

/* header {
  background: linear-gradient(128deg, rgba(17, 15, 20, 1), rgba(58, 46, 99, 1));
  height: 10vh;
  display: flex;
  justify-content: space-between;
  padding: 1% 12px;
  align-items: center;
} */

/* header a {
  border: 1px solid #fff;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 6vh;
  font-size: small;
} */

/* header a:hover {
  text-decoration: none;
  color: #b58aff;
  border: 1px solid #b58aff;
} */

/* .img1 {
  width: 15%;
  height: auto;
  padding-bottom: 5px;
} */

.imgsvg {
  width: 70%;
  height: 65%;
  margin-left: 147px;
}

.about-us {
  background-color: #1e1e1e;
  color: #fff;
  padding: 80px 0;
}

.features-section {
  background: linear-gradient(135deg, #667eea, #8859b8);
  color: #fdf6f6;
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.firstsection {
  background-image: url("./uibg.png");
  background-size: cover;
  background-position: center;
  padding: 2rem 0;
  height: calc(100vh - 10vh);
  /* Adjusted height to consider the header */
  /* Subtract the height of navbar */
}

.card.bg-transparent {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-radius: 16px;
}

.border-light {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

.position-absolute {
  max-width: 180px;
}

.text {
  /* font-size: 2.5rem; */
  font-size: 40px;
}

.top-left,
.top-right,
.bottom-left,
.bottom-right {
  position: absolute;
}

.top-left {
  top: 18vh;
  left: 100px;
}

.top-right {
  top: 18vh;
  /* Adjusted position to consider the header */
  right: 100px;
}

.bottom-left {
  bottom: 20px;
  left: 120px;
}

.bottom-right {
  bottom: 20px;
  right: 120px;
}

/* third section  */

/* .features-section {
  background: linear-gradient(135deg, #b58aff, #d19dfc);

  color: #fdf6f6;
  padding: 80px 0;
} */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  /* background: linear-gradient(
    135deg,
    rgba(71, 61, 105, 0.5),
    rgba(71, 61, 105, 0.5)
  ); */
  background: linear-gradient(-125deg, #9c6fd3cc, #7b47f1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
/* .feature-card:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(45deg);
  pointer-events: none;
} */

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .cardtext {
  margin-top: -200px;
}

.feature-icon {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
  /* background: linear-gradient(133deg, #6232ef 0%, #dbb5f3 100%); */
  background: linear-gradient(135deg, #667eea, #9477c5fa);
  padding: 2%;
  border: 1px solid #fff;
  border-radius: 71px;
  height: auto;
  width: 86px;
  margin-right: 70%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.extra-feature {
  /* background: linear-gradient(-125deg, #9c6fd3cc, #7b47f1); */
  padding: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
}

.extra-feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.extra-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.extra-feature:before {
  content: "";
  position: absolute;
  top: -181%;
  left: 30%;
  width: 37%;
  height: 448%;
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(314deg);
  pointer-events: none;
}

.extra-feature h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #ffdd57;
}

.extra-feature p {
  line-height: 1.6;
  font-size: 1.1em;
}

.extra-feature .feature-icon {
  font-size: 42px;
  margin-right: 20px;
}

.extra-feature .feature-content {
  flex-grow: 1;
}

.btn {
  /* background: linear-gradient(128deg, rgba(17, 15, 20, 1), rgba(58, 46, 99, 1)); */
  background: linear-gradient(168deg, #272c58, #41245e);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: 35vh;
  margin: 4%;
  border: 0px solid rgba(0, 0, 0, 0);
}

.btn:hover {
  color: #7c56c3;
  border: 1px solid #7c56c3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.secsection {
  background: linear-gradient(135deg, #7c4dff, #a23cfc);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* new code  */
.frame {
  display: flex;
  width: 138px;
  height: 188px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 12px;
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 80px;
  border: 1.5px solid;
  border-color: #c9dff040;

  top: -124px;
}

.frame .div {
  display: flex;
  flex-direction: column;
  width: 113.7px;
  align-items: center;
  gap: 16px;
  position: relative;
}

.frame .text-wrapper {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Montserrat-SemiBold", Helvetica;
  font-weight: 600;
  color: #fbfbfb;
  font-size: 24.2px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.frame .group {
  position: relative;
  width: 113.7px;
  height: 70.25px;
}

.frame .overlap-group {
  position: relative;
  width: 105px;
  height: 70px;
  left: 4px;
}

.frame .ellipse {
  position: absolute;
  width: 70px;
  height: 69px;
  top: -1px;
  left: 52px;
}

.frame .img {
  position: absolute;
  width: 70px;
  height: 72px;
  top: -5px;
  left: -15px;
}

.frame .ellipse-2 {
  position: absolute;
  width: 70px;
  height: 86px;
  top: -8px;
  left: 16px;
}

.frame .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  font-family: "Montserrat-SemiBold", Helvetica;
  font-weight: 400;
  color: #fbfbfb;
  font-size: 16.2px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

/* .testimonial-img {
  height: 23vh;
  width: -webkit-fill-available;
  position: absolute;
  left: -600px;
  top: 221px;
} */

/* .testimonial-img {
  height: 23vh;
  width: fit-content;
  position: absolute;
  left: 8rem;
  top: 18rem;
} */

.text-md-left {
  text-align: center !important;
}

.col-md-2 {
  max-width: 7.666667% !important;
}
@media (min-width: 767.98px) and (max-width: 1071px) {
  .top {
    margin-top: 4rem !important;
  }
}

@media (max-width: 767.98px) {
  /* .testimonial {
    width: 100%;
    height: 31vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .testimonial-img {
    height: 23vh;
    width: -webkit-fill-available;
    position: absolute;
    left: 0px !important;
    top: 0px !important;
  } */
  .position-absolute {
    position: relative !important;
    max-width: none;
    margin-bottom: 20px;
  }

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

  .container-fluid {
    margin-top: 0px !important;
  }

  .firstsection {
    background-size: cover;
    background-position: center;
    padding: 0rem 0;
    height: auto;
    /* Adjusted height to fit content */
  }

  .top-left,
  .top-right,
  .bottom-left,
  .bottom-right {
    position: relative;
    max-width: none;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  /* about-us */
  .stats {
    flex-direction: column;
    align-items: center;
  }

  .stat {
    margin: 10px 0;
  }

  .job-roles-container {
    position: static;
    margin-top: 40px;
  }

  .job-roles {
    grid-template-columns: repeat(2, 1fr);
    transform: none;
  }

  .job-role:hover {
    transform: translateY(-5px);
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .extra-feature {
    flex-direction: column;
    text-align: center;
  }

  .extra-feature .feature-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .extra-feature .feature-icon {
    font-size: 63px;
    margin-right: 20px;
  }
  .subtext {
    font-size: 16px;
  }

  /* tesimonial */

  .frame {
    display: flex;
    width: 80px;
    height: 109px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 12px;
    position: relative;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 48px;
    border: 1.5px solid;
    border-color: #c9dff040;
    background: linear-gradient(
      180deg,
      rgb(84.99, 67.28, 119.42) 0%,
      rgb(53, 42, 90) 100%
    );
    top: -12px;
    left: 222px;
    text-align: center;
    /* align-items: center; */
  }

  .frame .div {
    display: flex;
    flex-direction: column;
    width: 113.7px;
    align-items: center;
    gap: 8px;
    position: relative;
    top: 14px;
  }
  .frame .ellipse {
    position: absolute;
    width: 60px;
    height: 40px;
    top: -5px;
    left: 42px;
  }
  .frame .img {
    position: absolute;
    width: 70px;
    height: 40px;
    top: -5px;
    left: -3px;
  }
  .frame .ellipse-2 {
    position: absolute;
    width: 70px;
    height: 45px;
    top: -8px;
    left: 16px;
  }
  .frame .text-wrapper-2 {
    position: relative;
    align-self: stretch;
    font-family: "Montserrat-SemiBold", Helvetica;
    font-weight: 400;
    color: #fbfbfb;
    font-size: 9.2px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    top: -28px;
  }
}

/* about-us */

.about-us {
  background-color: #1e1e1e;
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-us p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.stats {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
  margin: 0 20px;
}

.value {
  font-size: 48px;
  font-weight: bold;
  color: #717beb;
}

.label {
  font-size: 16px;
}

.filter {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.filter span {
  margin: 0 10px;
  font-weight: bold;
  color: #717beb;
}

.job-roles-container {
  position: absolute;
  bottom: 51px;
  right: -113px;
}

.job-roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  transform: rotate(-30deg);
}

.job-role {
  background-color: rgba(71, 61, 105, 0.5);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  vertical-align: middle;
  border: 1px solid #fff;
  gap: 18px;
  justify-content: center;
}

.job-role:hover {
  transform: translateY(-5px) rotate(-30deg);
}

.job-role i {
  font-size: 24px;
  color: #9370db;
  /* margin-bottom: 10px; */
  margin: 0px 20px;
}

.feature-icon-new {
  padding: 6% !important;
}

/* footer section  */

/* .footer {
  background-color: #28282b;
  min-height: 26vh;
  color: #6232ef;
}

.footer {
  padding: 30px;
}

.footer-subdiv {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.footer h1 {
  font-size: 3rem;
  margin-bottom: 0;
  color: #fdf6f6;
}

.footer h4 {
  color: #fdf6f6;
}

.footer h5 {
  color: #fdf6f6;
} */

/* .footer .social-icons i {
  font-size: 2rem;
  margin-right: 15px;
  color: #717beb;
} */

.footer .contact-info h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.footer .contact-info h5 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.footer .contact-info span {
  color: #bbb;
  font-size: 1.2rem;
}

/* Responsive CSS for Footer */

/* For small screens */
@media (max-width: 767.98px) {
  .footer h1 {
    font-size: 2rem !important;
    /* Reduce font size for h1 */
  }

  .footer h4,
  .footer h5 {
    font-size: 20px !important;
  }

  .footer .social-icons i {
    font-size: 1.5rem !important;
    /* Reduce font size for social icons */
    margin-right: 10px !important;
    /* Adjust spacing for social icons */
  }
}

/* For medium screens */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer h1 {
    font-size: 3.5rem;
    /* Adjust font size for h1 */
  }

  .footer h4,
  .footer h5 {
    font-size: 1.8rem;
    /* Adjust font size for h4 and h5 */
  }

  .footer .social-icons i {
    font-size: 2rem;
    /* Adjust font size for social icons */
    margin-right: 12px;
    /* Adjust spacing for social icons */
  }
}
@media (max-width: 1400px) and (min-width: 1200px) {
  .testimonial-img {
    height: 22vh !important;
    width: -webkit-fill-available;
    position: absolute;
    left: -447px !important;
    top: 208px !important;
  }

  .firstsection {
    height: 113vh !important;
  }
  .custom-text-wrapper {
    font-size: 8px;
  }
  .custom-span {
    font-size: 8px;
  }
  .custom-component {
    padding: 20px;
    max-width: 43%;
    left: 30rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 13rem;
  }

  .box .group {
    height: 120vh !important;
  }
}

@media (max-width: 1500px) {
  /* .testimonial-img {
    height: 16vh !important;
    width: -webkit-fill-available;
    position: absolute;
    left: -407px !important;
    top: 372px !important;
  } */
  .custom-lorem-ipsum {
    font-size: 8px;
  }
  .custom-component {
    padding: 20px;
    max-width: 40%;
    left: 17rem !important;
    position: absolute;
    top: 24rem;
  }
  .custom-vectormain {
    max-width: 12.666667% !important;
  }
  .close {
    top: 200px !important;
    opacity: 1 !important;
    right: -200px !important;
  }
}

@media (max-width: 1200px) {
  .testimonial-img {
    display: none;
  }
  .custom-component {
    display: none !important;
    left: 5rem !important;
    top: 11px;
    max-width: 30% !important;
  }
  .custom-vectormain {
    max-width: 9.666667% !important;
  }
  .custom-lorem-ipsum {
    top: 11px;
  }
}

@media (max-width: 767.98px) {
  .job-roles-container {
    position: static;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    /* Add some space from the top */
  }

  .job-roles {
    grid-template-columns: 1fr;
    /* Display in a single column */
    gap: 10px;
    /* Reduce the gap between job roles */
    transform: none;
  }

  .job-role {
    width: 100%;
    /* Take up full width */
    margin-bottom: 10px;
    /* Add some space between job roles */
  }
}

@media (min-width: 850px) and (max-width: 1208px) {
  .imgsvg {
    margin-left: 103px;
  }
}

@media (min-width: 992px) and (max-width: 1208px) {
  .job-roles-container {
    position: absolute;
    bottom: 31px;
    right: -144px;
  }
}

/* styles.css (responsive only for job-role size in md screens) */

@media (min-width: 768px) and (max-width: 991.98px) {
  .job-role {
    padding: 8px;
    /* Reduce the width to fit two elements per row */
  }

  .job-roles-container {
    position: absolute;
    bottom: 49px;
    right: -163px;
  }

  .btn {
    width: 26vh;
  }

  .text {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 767.98px) {
  .footer h4,
  .footer h5 {
    font-size: 12px !important;
  }

  .feature-card {
    padding: 23px;
  }

  .imgsvg {
    margin-left: 104px;
  }

  .top {
    margin-top: 4rem !important;
  }

  .img1 {
    width: 32%;
    height: auto;
    padding-bottom: 0px;
  }

  .feature-card .cardtext {
    margin-top: -180px;
  }

  /* h3 {
    font-size: 28px !important;
  } */

  .text {
    /* font-size: 2.5rem; */
    font-size: 24px;
    text-align: center;
    width: -webkit-fill-available;
  }

  .row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 20px !important;
    margin-left: 20px !important;
  }
}

@media (max-width: 467px) {
  .img1 {
    width: 42%;
  }
  .text {
    /* font-size: 2.5rem; */
    font-size: 18px;
    text-align: center;
    width: -webkit-fill-available;
  }
  .subtext {
    font-size: 12px;
  }
  .btn {
    font-size: 12px;
  }
}

@media (max-width: 323px) {
  .img1 {
    width: 54%;
  }

  header a {
    border: 1px solid #fff;
    padding: 4px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 6vh;
    font-size: 9px;
    width: 94px;
  }

  .text {
    /* font-size: 2.5rem; */
    font-size: 18px;
    text-align: center;
    width: -webkit-fill-available;
  }
  .subtext {
    font-size: 12px;
  }

  .btn {
    /* background: linear-gradient(
      128deg,
      rgba(17, 15, 20, 1),
      rgba(58, 46, 99, 1)
    ); */
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 55vh;
    margin: 4%;
    font-size: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  /* h3 {
    font-size: 14px !important;
  } */

  .row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 20px !important;
    margin-left: 20px !important;
  }

  .footer h4,
  .footer h5 {
    font-size: 8px !important;
  }
}

@media (max-width: 323px) {
  .footer h4,
  .footer h5 {
    font-size: 8px !important;
  }

  .imgsvg {
    margin-left: 74px;
  }

  .feature-icon-new {
    padding: 10% !important;
  }

  .feature-icon {
    font-size: 48px;
    color: #fff;
    margin-bottom: 46px;
    /* background: linear-gradient(133deg, #6232ef 0%, #dbb5f3 100%); */
    padding: 2%;
    border: 1px solid #fff;
    border-radius: 71px;
    height: auto;
    width: 86px;
    margin-right: 70%;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  .imgsvg {
    width: 84%;
    height: 55%;
    margin-left: 62px !important;
  }

  .feature-icon {
    padding: 9%;
  }
}

/* header  */
header {
  /* background: linear-gradient(128deg, rgba(17, 15, 20, 1), rgba(58, 46, 99, 1)); */
  background: linear-gradient(168deg, #272c58, #41245e);
  /* background: linear-gradient(168deg, #272c58, #4a4f8b); */
  height: 10vh;
  display: flex;
  justify-content: space-between;
  padding: 1% 12px;
  align-items: center;
}

header a {
  border: 1px solid #fff;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 6vh;
  font-size: small;
  text-decoration: none;
}

.nav-links li {
  color: #fff;
}

header a:hover {
  text-decoration: none;
  color: #b58aff;
  border: 1px solid #b58aff;
}

.img1 {
  width: 15%;
  height: auto;
  padding-bottom: 5px;
}

.hamburger-btn {
  display: none;
}

@media (max-width: 767.98px) {
  .component {
    display: none;
  }
  .img1 {
    width: 32%;
    height: auto;
    padding-bottom: 0px;
  }

  header a {
    border: 1px solid #fff;
    padding: 11px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 6vh;
    font-size: 12px;
    width: 140px;
  }

  header a:hover {
    text-decoration: none;
    color: #6232ef;
    border: 1px solid #6232ef;
  }

  .nav-links {
    position: absolute;
    top: 10%;
    right: 0;
    width: 51%;
    background-color: #b58aff;
    text-align: center;
    z-index: 1;
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
    list-style-type: none;
    padding: 0;
    height: 63%;
    margin-bottom: 0rem;
    z-index: 1;
  }

  .nav-links.active {
    max-height: 300px;

    border-radius: 0px 0px 0px 8px;
    z-index: 2;
  }

  .nav-links li {
    padding: 10px;
    text-align: -webkit-center;
  }

  .hamburger-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 0rem;
  }

  .nav-links li {
    list-style-type: none;
  }

  .getstart {
    margin-left: 24px;
  }
}

@media (max-width: 243px) {
  .text {
    /* font-size: 2.5rem; */
    font-size: 11px;
    text-align: center;
    width: -webkit-fill-available;
  }

  .contact-info {
    margin-left: 0px;
  }
  .subtext {
    font-size: 8px;
  }

  /* .feature-card {
    margin-right: 46px;
    padding: 0px;
  } */
  .imgsvg {
    margin-left: 36px !important;
    padding-bottom: 47px;
  }

  .contact-info {
    margin-left: 0px;
  }
  .feature-content h3 {
    font-size: 16px;
  }

  .feature-content p {
    font-size: 8px;
  }
  .cardtext h3 {
    font-size: 16px;
  }

  .cardtext p {
    font-size: 8px;
  }
  .feature-icon {
    font-size: 38px;
    color: #fff;
    margin-bottom: 46px;
    /* background: linear-gradient(133deg, #6232ef 0%, #dbb5f3 100%); */
    padding: 2%;
    border: 1px solid #fff;
    border-radius: 71px;
    height: auto;
    width: 74px;
    margin-right: 70%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 33px;
  }
  .feature-icon {
    padding: 9%;
    margin: 48px;
  }

  .btn {
    background: linear-gradient(168deg, #272c58, #41245e);
    color: #fff;
    padding: 3px 2px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 24vh;
    margin: 4%;
    font-size: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.head-tag {
  border: none;
}
.head-tag:hover {
  border: none;
}

/* 16-07-2024 */
.frame {
  display: flex;
  width: 114px;
  height: 168px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 12px;
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 80px;
  border: 1.5px solid;
  border-color: #c9dff040;
  background: linear-gradient(
    180deg,
    rgb(84.99, 67.28, 119.42) 0%,
    rgb(53, 42, 90) 100%
  );
}

.frame .div {
  display: flex;
  flex-direction: column;
  width: 113.7px;
  align-items: center;
  gap: 16px;
  position: relative;
}

.frame .text-wrapper {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Montserrat-SemiBold", Helvetica;
  font-weight: 600;
  color: #fbfbfb;
  font-size: 24.2px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.frame .group {
  position: relative;
  width: 113.7px;
  height: 70.25px;
}

.frame .overlap-group {
  position: relative;
  width: 105px;
  height: 70px;
  left: 4px;
}

.frame .ellipse {
  position: absolute;
  width: 70px;
  height: 69px;
  top: -1px;
  left: 52px;
}

.frame .img {
  position: absolute;
  width: 70px;
  height: 72px;
  top: -5px;
  left: -15px;
}

.frame .ellipse-2 {
  position: absolute;
  width: 70px;
  height: 91px;
  top: -8px;
  left: 16px;
}

.frame .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  font-family: "Montserrat-SemiBold", Helvetica;
  font-weight: 400;
  color: #fbfbfb;
  font-size: 16.2px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

/* new box design */
.box {
  width: 100%;
  height: auto;
}

.box .group {
  position: absolute;
  width: 100%;
  height: -webkit-fill-available;
  top: 0;
  left: 0;
  background-color: #979797c4;
  z-index: 1;
}

.box .div {
  position: relative;
  width: -webkit-fill-available;
  height: 689px;
  top: 4rem;
  /* left: 219px; */
}

.box .frame {
  display: flex;
  width: 121px;
  height: 210px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 23px 25px;
  position: absolute;
  top: 479px;
  left: 259px;
  border-radius: 80px;
  background: linear-gradient(
    180deg,
    rgb(84.99, 67.28, 119.42) 0%,
    rgb(53, 42, 90) 100%
  );
}

.box .frame-2 {
  display: flex;
  flex-direction: column;
  /* width: 105px; */
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
}

.box .img {
  position: absolute;
  align-self: stretch;
  /* width: 100%; */
  /* flex: 0 0 auto; */
  top: -80px;
}

.box .frame-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.box .div-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.box .text-wrapper {
  position: relative;
  width: fit-content;
  font-family: "Montserrat-SemiBold", Helvetica;
  font-weight: 600;
  color: #fbfbfb;
  font-size: 16.2px;
  text-align: justify;
  letter-spacing: 0;
  line-height: normal;
  top: 37px;
}

.box .frame-3 {
  position: absolute;
  width: 89%;
  height: 52vh;
  top: -2.5rem;
  left: 95px;
  border-radius: 16px;
  overflow: hidden;
  /* background: linear-gradient(
    180deg,
    rgb(80, 63, 114) 0%,
    rgb(61, 48, 98) 100%
  ); */
  overflow-x: scroll;
  scrollbar-width: none;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.box .rectangle {
  left: 1187px;
  position: absolute;
  width: 552px;
  height: 339px;
  top: 37px;
}

.box .rectangle-2 {
  left: 611px;
  position: absolute;
  width: 552px;
  height: 339px;
  top: 37px;
}

.box .rectangle-3 {
  left: 35px;
  position: absolute;
  width: 552px;
  height: 339px;
  top: 37px;
}

.box .rectangle-4 {
  left: 1760px;
  position: absolute;
  width: 552px;
  height: 339px;
  top: 37px;
}

.testimonial-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  top: 18rem;
  position: absolute;
  left: 41rem;
}

/* .testimonial-button */
.testimonial-img {
  height: 22vh;
  width: -webkit-fill-available;
  position: absolute;
  left: -619px;
  top: 170px;
}

.close {
  top: 190px;
  opacity: 1 !important;
  right: -370px;
}
