@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap');


/* Common Css */

body {
  font-family: "Baloo 2", sans-serif;
}

.cus-logo {
  width: 140px;
}

.cus-logo img {
  width: 100%;
}

.cus-container {
  max-width: 1710px;
  padding: 0 15px;
  margin: 0 auto;
}

.section-heading h2 {
  font-size: 82px;
  font-weight: 600;
  color: #141727;
  line-height: 100%;
}

.section-heading h2 span {
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.section-heading p {
  font-size: 22px;
  color: #141727;
  line-height: 150%;
}

/* .cursor-dot,
.cursor-outline {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.3s, transform 0.1s;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: black;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid black;
  transition: transform 0.15s ease-out;
}

a:hover~.cursor-outline,
h1:hover~.cursor-outline {
  transform: translate(-50%, -50%) scale(1.5);
  border-color: red;
}*/

.cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.7s infinite;
  color: black;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}


.cus-primary-btn {
  padding: 18px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  border-radius: 6px;
  text-decoration: none;
  color: #fff !important;
  cursor: pointer;
  transition: 0.3s ease;
  /* margin-left: 100px; */
}

.cus-primary-btn:hover {
  transition: 0.3s ease;
  background: linear-gradient(90deg, #563DE8 0%, #7E39F7 100%);
}

.cus-header {
  padding: 50px 0;
  /* position: fixed;
  width: 100%;
  top: 0; */
  background-image: url("../img/bg-image.png");
  background-size: cover;
  z-index: 99;
}

.cus-header .navbar {
  padding: 0;
}

.cus-header .navbar .navbar-brand {
  padding: 0;
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 44px;
  font-weight: 700;
  line-height: 100%;
}

.cus-header .navbar .navbar-nav {
  gap: 43px;
}

.cus-header .navbar .navbar-nav .nav-item .nav-link {
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  color: #141727;
}

.cus-header .navbar .navbar-nav .nav-item .nav-link img {
  max-width: 13px;
  width: 100%;
}

/* .cus-header .navbar .navbar-nav .nav-item .nav-link .arrow-black,
.cus-header .navbar .navbar-nav .nav-item .nav-link .arrow-gradient {
  position: relative;
} */

.cus-header .navbar .navbar-nav .nav-item .nav-link .arrow-gradient {
  display: none;
  transition: 0.3s ease-in-out;
}

.cus-header .navbar .navbar-nav .nav-item .nav-link:hover .arrow-black {
  display: none;
}

.cus-header .navbar .navbar-nav .nav-item .nav-link:hover .arrow-gradient {
  display: block;
  transform: rotate(-180deg);
}

.cus-header .navbar .navbar-nav .nav-item .nav-link.active {
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.cus-header .navbar .navbar-nav .nav-item:hover {
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.cus-header .navbar .navbar-nav .nav-item .nav-link.active::after,
.cus-header .navbar .navbar-nav .nav-item:hover::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  bottom: -10px;
  left: 0;
}

.cus-header .navbar .cus-primary-btn {
  margin-left: 100px;
}












.banner,
.service-banner {
  /* margin-top: 155px; */
  /* padding: 205px 0 50px; */
  padding: 50px 0;
  background-image: url("../img/bg-image.png");
  background-size: cover;
}

.banner .box h1,
.service-banner .box h2 {
  font-size: 96px;
  line-height: 114px;
  font-weight: 600;
  color: #141727;
  margin-bottom: 49px;
}

.banner .box h1 span,
.service-banner .box h2 span {
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.banner .box .maximize-text p {
  color: #141727;
  font-size: 22px;
  font-weight: 500;
  padding: 14px 24px;
  background: linear-gradient(90deg, rgba(126, 57, 247, 0.06) 0%, rgba(86, 61, 232, 0.06) 100%);
  border-left: 5px solid #7E39F7;
  border-radius: 6px;
  width: max-content;
  margin-bottom: 26px;
}

.banner .box p {
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
  max-width: 675px;
  color: #141727;
}

.service-banner .box p {
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
  color: #141727;
}

.service-banner .img-box img {
  max-width: 100%;
  height: auto;
}

.form-container {
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 572px;
  width: 100%;
  border: 1px solid #E4DFFC;
  /* box-shadow: 0 30px 60px rgba(101, 53, 255, 0.4); */
  box-shadow: 50px 50px 80px 0px #563DE826;
  margin-left: auto;
  position: relative;
}

.form-container::after {
  position: absolute;
  content: "";
  border: 1px solid #563DE8;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  top: -30px;
  left: -30px;
  border-radius: 20px;
  background: transparent;
  z-index: -1;
}

.form-container h2 {
  color: #5B3EFF;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 30px;
}

.form-container input,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #D0D0D3;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  outline: none;
  box-sizing: border-box;
}

.form-container textarea {
  resize: vertical;
  min-height: 184px;
  resize: none;
}


.form-container button {
  margin-top: 90px;
  width: 100%;
  border: none;
}

.form-container .error {
  border-color: red;
}

.form-container .error-message {
  color: red;
  font-size: 12px;
  margin: -10px 0 10px;
}





.services {
  padding: 120px 0;
  background-color: #F6F1FF;
}

.services .box {
  margin-top: 90px;
}

.services .box .content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #C0BAE5;
  transition: 0.3s ease-in-out;
}

.services .box .content-box:last-child {
  border-bottom: none;
}

.services .box .content-box h4 {
  font-size: 44px;
  font-weight: 500;
  line-height: 115px;
  color: #3B3D49;
  position: relative;
}

.services .box .content-box:hover h4 {
  font-weight: 600;
  font-size: 46px;
}

.services .box .content-box:hover h4::after {
  content: "";
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  position: absolute;
  right: -30px;
  bottom: 40px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.services .box .content-box:hover .content p {
  display: block;
  margin-bottom: 0;
}

.services .box .content-box:hover .content .arrow-2 {
  display: block;
}

.services .box .content-box .content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.services .box .content-box .content p {
  max-width: 700px;
  font-size: 18px;
  color: #141727;
  line-height: 150%;
  margin-right: 60px;
  display: none;
}

.services .box .content-box .content img {
  max-width: 66px;
  width: 100%;
}

.services .box .content-box .content .arrow-1,
.services .box .content-box .content .arrow-2 {
  position: absolute;
  right: 0;
  top: 25px;
}

.services .box .content-box .content .arrow-2 {
  display: none;
}





.industry {
  background-color: #F6F1FF;
  padding-bottom: 120px;
}

.industry .section-heading {
  max-width: 900px;
  margin: 0 auto;
}

.industry .section-heading p {
  margin-bottom: 10px;
}

.industry .industry-wrap {
  margin-top: 96px;
  display: flex;
  gap: 20px;
}

.industry .industry-wrap .box {
  background-color: #FFFFFF;
  padding: 30px 30px 60px;
  border-radius: 20px;
  position: relative;
}

.industry .industry-wrap .box .img-box {
  /* position: absolute; */
  left: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.industry .industry-wrap .box:hover .img-box {
  background: #fff;
}

.industry .industry-wrap .box:hover .img-box .service-img-2 {
  display: block;
}

.industry .industry-wrap .box:hover .img-box .service-img-1 {
  display: none;
}

.industry .industry-wrap .box:hover {
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
}

.industry .industry-wrap .box .img-box img {
  max-width: 40px;
}

.industry .industry-wrap .box .img-box .service-img-2 {
  display: none;
}

.industry .industry-wrap .box h4 {
  font-size: 24px;
  color: #141727;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 30px;
  /* min-height: 48px; */
}

.industry .industry-wrap .box:hover h4 {
  color: #fff;
}

.industry .industry-wrap .box p {
  font-size: 18px;
  color: #141727;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 30px;
}

.industry .industry-wrap .box:hover p {
  color: #fff;
}


.industry .industry-wrap .box .read-more-box {
  border: 1px solid #7D39F7;
  /* You can set the thickness */
  /* border-image-source: linear-gradient(90deg, #7D39F7 0%, #583DE9 100%); */
  border-image-slice: 1;
  background-color: transparent;
  width: fit-content;
  border-radius: 6px;
  position: absolute;
  bottom: 30px;
}

.industry .industry-wrap .box:hover .read-more-box {
  background-color: #fff;
}

.industry .industry-wrap .box .read-more-box a {
  padding: 12px 20px;
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  line-height: 100%;
  display: inline-block;
}


.case-study {
  padding: 0 0 255px;
  background-color: #F6F1FF;
}

.case-study .case-study-wrap .section-heading {
  padding: 32px 0;
}

.case-study .case-study-wrap .section-heading h2 {
  white-space: nowrap;
}

.case-study .case-study-wrap .section-heading p {
  max-width: 901px;
  margin-left: auto;
}

.case-study .case-study-wrap .case-study-box {
  margin-top: 60px;
}

.case-study .case-study-wrap .case-study-box .box {
  margin: 0 10px;
  background-color: #FFFFFF;
  border-radius: 20px;
}

.case-study .case-study-wrap .case-study-box .box img {
  width: 100%;
  height: auto;
}

.case-study .case-study-wrap .case-study-box .box .box-content {
  padding: 20px 30px 30px;
}

.case-study .case-study-wrap .case-study-box .box .box-content h4 {
  font-size: 34px;
  font-weight: 700;
  line-height: 100%;
  color: #141727;
  margin-bottom: 10px;
  min-height: 67.97px;
}

.case-study .case-study-wrap .case-study-box .box .box-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #141727;
  margin-bottom: 30px;
  min-height: 108.31px;
}

.case-study .case-study-wrap .case-study-box .box .box-content .read-more-box {
  border: 1px solid #7D39F7;
  /* You can set the thickness */
  /* border-image-source: linear-gradient(90deg, #7D39F7 0%, #583DE9 100%); */
  border-image-slice: 1;
  background-color: transparent;
  width: fit-content;
  border-radius: 6px;
}

.case-study .case-study-wrap .case-study-box .box .box-content a {
  padding: 12px 20px;
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  line-height: 100%;
  display: inline-block;
}

.slider-btn {
  gap: 30px;
  margin-top: 54px;
}

.slider-btn button {
  width: 55px;
  height: 55px;
  border: none;
  background-color: transparent;
}

.slider-btn button.custom-prev {
  transform: rotate(-180deg);
}

.slider-btn button img {
  width: 100%;
}

.slider-btn button.slick-arrow.slick-disabled {
  filter: opacity(0.5);
}



.contact-us {
  padding: 70px 0;
  position: relative;
}

/* .contact-box {
  margin-top: 81px;
}

.contact-box .box {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-box .box img {
  max-width: 72px;
}

.contact-box .box .contact-details h5 {
  font-size: 26px;
  color: #141727;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 0;
}

.contact-box .box .contact-details p {
  font-size: 22px;
  font-weight: 400;
  color: #141727;
  line-height: 150%;
  margin-bottom: 0;
} */
.contact-us-img {
  position: absolute;
  max-width: 566px;
  bottom: -45px;
}

.contact-us-img img {
  width: 100%;
  height: auto;
}

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  width: 880px;
  box-shadow: 0 25px 50px rgba(80, 63, 205, 0.25);
  margin-left: auto;
  margin-top: -180px;
}

.contact-form .badge {
  display: inline-block;
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-size: 26px;
  padding: 14px 24px;
  border: 1px solid #E3E3E3;
  border-radius: 6px;
  line-height: 100%;
}

.contact-form h4 {
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #141727;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 5px;
  border: 1px solid #D0D0D3;
  border-radius: 8px;
  font-size: 20px;
  line-height: 100%;
  color: #4C5068;
}

.contact-form .error {
  color: red;
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-form textarea {
  resize: none;
  height: 144px;
}

.contact-form .cus-row {
  display: flex;
  gap: 20px;
}

.contact-form .field-group {
  width: 100%;
}

.contact-form button {
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 22px;
  padding: 12px 24px;
  line-height: 150%;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  margin-top: 30px;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #563DE8 0%, #7E39F7 100%);
  /* background: linear-gradient(90deg, #5C7CFA 0%, #845EF7 100%); */
}


.footer {
  background-color: #F6F1FF;
}

.footer .box {
  display: flex;
  gap: 80px;
  border-right: 1px solid #563DE812;
  padding: 65px 0 65px;
}

.footer .box a {
  padding: 0;
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 44px;
  font-weight: 700;
  line-height: 100%;
}

.footer .box p {
  font-size: 18px;
  font-weight: 400;
  color: #141727;
  line-height: 150%;
  max-width: 523px;
}

.footer .list {
  display: flex;
  padding: 70px 0 81px;
  justify-content: space-between;
}

.footer .list ul {
  /* max-width: 364px; */
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer .list ul li {
  list-style-type: none;
}

.footer .list ul li a {
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
  color: #141727;
  text-decoration: none;
}

.footer .list .social-media {
  display: flex;
  gap: 28px;
}

.footer .list .social-media a {
  max-width: 27px;
  max-height: 20px;
}

.footer .list .social-media a img {
  max-width: 100%;
  height: 100%;
}

.footer .copyright-wrap {
  padding: 30px;
  text-align: center;
  border-top: 1px solid #563DE812;
}

.footer .copyright-wrap p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  color: #141727;
  line-height: 150%;
}




.overview {
  background-color: #F6F1FF;
  padding-top: 120px;
  padding-bottom: 255px;
}


.section-heading-2 h2 {
  color: #141727;
  font-size: 58px;
  font-weight: 600;
  line-height: 114%;
  margin-bottom: 40px;
}

.section-heading-2 p {
  color: #141727;
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 40px;
}

.overview .process {
  margin: 120px 0 177px;
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%), url('../img/proces-bg.png');
  background-size: cover;
  padding: 83px 60px 93px;
  border-radius: 20px;
}

.overview .process h2 {
  color: #F6F1FF;
  font-size: 58px;
  font-weight: 600;
  line-height: 114%;
  margin-bottom: 80px;
}

.overview .process .process-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.overview .process .process-wrap .box span {
  background: linear-gradient(90deg, #7E39F7 0%, #563DE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  font-weight: 600;
  line-height: 100%;
}

.overview .process .process-wrap .box .span-box {
  background-color: #FFFFFF;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 59px;
  height: 59px;
  margin-bottom: 20px;
}


.overview .process .process-wrap .box h4 {
  color: #F6F1FF;
  font-size: 30px;
  font-weight: 600;
  line-height: 114%;
  margin-bottom: 20px;
}

.overview .process .process-wrap .box p {
  color: #F6F1FF;
  font-size: 24px;
  font-weight: 400;
  line-height: 114%;
  margin-bottom: 20px;
}