@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap);

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  color:#21272a;
}
.w-90{
  width:90%;
}
.p-light{
  color:#7d7a86;
}
.btn:hover{
  background-color: #5e3bbe;
  color: white;
}
.btn-secondary{
  background-color: #a93bfe;
  color: #fff;
  border-color: #a93bfe;
}
.chat-text-primary{
  color:#5e3bbe;
}
.mt-80{margin-top: 80px;}

input::placeholder, textarea::placeholder {
  color: #999999 !important;
  opacity: 1;
}

/* Cross-Browser Support */
input::-webkit-input-placeholder { color: #999999; opacity: 0.6; } /* Chrome, Safari */
input::-moz-placeholder { color: #999999; opacity: 0.6; } /* Firefox 19+ */
input:-ms-input-placeholder { color: #999999; opacity: 0.6; } /* IE 10+ */
input:-moz-placeholder { color: #999999; opacity: 0.6; } /* Firefox 18- */


@media (min-width: 992px) {
  .p-16{font-size: 14px;line-height: 20px;}
}
@media (min-width: 1200px) {
  .p-16{font-size: 16px; line-height: 24px;}
}

/***** NavBar *****/
a.nav-link {
  margin-left: 15px;
}
a.nav-link:hover {
  color: #5e3bbe;
  font-weight: 600;
}
.navbar-nav {
  margin: auto;
}
.navbar-nav li a{color:#21272a;}
.btn-outline-primary {
  border-color: #5e3bbe;
  color: #5e3bbe;
}
.btn-outline-primary:hover {
  background-color: #5e3bbe;
  color: white;
}
.btn-primary {
  background-color: #5e3bbe;
  border-color: #5e3bbe;
}
#website_header{
  position: fixed;
  z-index:999;
  height: 80px;
  top:0;
  left: 0;
  right: 0;
  border-bottom:1px solid #dde1e6;
}
img.logo.img-fluid{height: 75px !important;}
@media (max-width: 991px) {
  .navbar-collapse {
      display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1300px) {
  .navbar-nav li a {
    font-size: 14px;
    padding: 0px;
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  img.logo.img-fluid{height: auto !important;}
  .navbar-brand{
    width: 38%;
    margin: 0 auto;
  }
  #website_header{
    height: 110px;
  }
  .navbtns{
    margin: 0 auto;
  }
  .navbtns a{font-size: 14px !important;}
}
/***** Banner *****/
.website_banner {
  position: relative;
  width: 100%;
  text-align: center;
  background: linear-gradient(270deg, #5c2bbf 0%, #4c2e88 100%);
  margin-top: 80px;
  
}
.website_banner img {
  width: 100%;
  height: auto;
  display: block;
}
/*
.website_banner {
  position: relative;
  width: 100%;
  /*height: 75vh;  Full screen height 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(to right, #5e3bbe, #a93bfe);
}*/

.website_banner video.bg_video {
  /*position: absolute;
  top: 80px;
  left: 0;*/
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
  border-radius: 20px;
}

.overlay_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: left;
  padding-top: 15px;
}
.banner_btn{
  background: linear-gradient(90deg, #d674d9 0%, #daa7ff 100%);
  color: #ffffff;
  border: 2px solid #5e3bbe;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  position: relative;
  display: inline-block;
}
.banner_btn span {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #ffffff;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}
.banner_btn::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark, #ac32e4);
  z-index: 0;
  transition: bottom 0.5s ease-in-out;
  color: #ffffff;
}
.banner_btn:hover::after {
  bottom: 0;
}
.banner_btn:hover{
  color: #ffffff;
}
@media (max-width: 480px) {
  
}
@media (max-width: 768px) {
  .website_banner{ margin-top: 110px;}
  
}
@media (max-width: 1024px) {
  .banner_headline{font-size: 35px;}
}
/***** solutions *****/

.section_style{
  padding: 100px 0 100px 0;
  gap:80px;
}
@media (max-width: 768px) {
  .section_style{
    padding: 50px 0 50px 0;
  }
}
.anchor_badge {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  background-color: #f5f2ff;
  border-radius: 16px;
  padding: 4px 16px;
  display: inline-block;
  border:1px solid #5e3bbe;
}
.four_sections{
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  font-size: 18px;
  line-height: 27px;
}
.four_sections > div {
  border-left: 1px solid #5e3bbe;
  padding: 0px 30px;
}
.four_sections i {
  color: #5e3bbe;
  font-weight: bold;
  font-size: 35px;
}
@media (max-width: 768px) {
  .four_sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/***** services *****/
.chat_bg_gray{
  background-color: #f8f6ff ;
}
.service_card {
  box-shadow: 0px 4px 13px 0px rgba(208, 208, 208, 0.25);
  border: 1px solid rgba(245, 242, 255, 1);
  border-radius: 16px;
}
/**** Industries *****/
#industry_card .card {
  border-radius: 16px;
  box-shadow: 0px 6px 18px 0px #d0d0d040;
  padding: 16px;
  border: 1px solid #f5f2ff;
}
#industry_card .card-body i{
  color: #5e3bbe;
  font-weight: bold;
  font-size: 35px;
}
.icon_bg{
  background: rgba(245, 242, 255, 1);
  border-radius: 50px; 
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center; 
  margin-bottom: 10px;
}
/**** process *****/
.chat_bg_img_primary{
  background-image: url(../images/background.png);
  width: 100%;
  color: #ffffff;
  background-size: cover;
}
#process_card .card {
  background: #503a8d;
  box-shadow: 5px 4px 14.9px 0px rgba(36, 21, 79, 0.09);
  padding: 24px;
  gap: 24px;
  border-radius: 16px;
  opacity: 1;
  text-align: left;
}
#process_card h1.number {
  background: linear-gradient(180deg, #ffffff 0%, #503a8d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 64px;
  font-weight: 500;
  line-height: 64px;
}
/**** testimonial *****/
.testimonial-slide {
  text-align: center;
  padding: 30px;
  background: #f8f6ff;
  border-radius: 20px;
}
.testimonial-name {
  font-weight: bold;
  margin-top: 10px;
  font-size: 20px;
  margin-bottom: 5px;
}
.testimonial-designation {
  color: #6c757d;
  font-size: 14px;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
.carousel-controls button {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}
.carousel-controls button:hover {
  color: #5e3bbe;
}
.carousel-inner{
  width: 80%;
}
@media (max-width: 768px) {
  .carousel-inner{
    width: 100%;
  }
}
/**** clients *****/
#clients {
  overflow: hidden;
}
#clients .slider {
  animation: slidein 30s linear infinite;
  white-space: nowrap;
}
#clients .slider .logos {
  width: 100%;
  display: inline-block;
  margin: 0px 0;
}

@keyframes slidein {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/****** features *****/
.features_card{
  background: #d7cdf0;
  box-shadow: 0px 4px 16.6px 0px rgba(188, 188, 188, 0.32);
  border-radius: 16px;
  box-sizing: border-box;
}
#features_section .features_card{
  border: 1px solid #5e3bbe;
}
.img-border {
  border: 1px solid #5e3bbe;
}
/****** Pricing ******/
.pricing {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 3em;
}

.pricing-item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  align-items: stretch;
  text-align: center;
  -webkit-flex: 0 1 330px;
  flex: 0 1 400px;
}

.pricing-action {
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.pricing-action:focus {
  outline: none;
}

.pricing-feature-list {
  text-align: left;
}

.pricing-palden .pricing-item {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  cursor: default;
  color: #84697c;
  background: #fff;
  box-shadow: 0 0 10px rgba(46, 59, 125, 0.23);
  border-radius: 20px 20px 10px 10px;
}

@media screen and (min-width: 66.25em) {
  .pricing-palden .pricing-item {
      margin: 1em -0.5em;
  }
  .pricing-palden .pricing__item--featured {
      margin-left: 50px;
      z-index: 10;
      box-shadow: 0 0 20px rgba(46, 59, 125, 0.23);
  }
}

.pricing-palden .pricing-deco {
  border-radius: 10px 10px 0 0;
  background: linear-gradient(135deg,#4097f9,#0af0c7);
  padding: 2em 0 7em;
  position: relative;
}

.pricing-palden .pricing-deco-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
}

.pricing-palden .pricing-title {
  font-size: 0.75em;
  margin: 0;
  letter-spacing: 2px;
  color: #fff;
}

.pricing-palden .deco-layer {
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
  -webkit-transform: translate3d(15px, 0, 0);
  transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
  -webkit-transform: translate3d(-15px, 0, 0);
  transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
  font-size: 2.5em;
}

.pricing-palden .pricing-price {
  font-size: 3em;
  font-weight: bold;
  padding: 0;
  color: #fff;
  margin: 0 0 0.25em 0;
  line-height: 0.75;
}

.pricing-palden .pricing-currency {
  font-size: 0.55em;
  vertical-align: top;
}

.pricing-palden .pricing-period {
  font-size: 0.65em;
  font-style: italic;
}

.pricing-palden .pricing__sentence {
  font-weight: bold;
  margin: 0 0 1em 0;
  padding: 0 0 0.5em;
}

.pricing-palden .pricing-feature-list {
  margin: 0;
  padding: 0.25em 0 2.5em;
  list-style: none;
  text-align: center;
}

.pricing-palden .pricing-feature {
  padding: 1em 0;
}

.pricing-palden .pricing-action {
  font-weight: bold;
  margin: auto 3em 2em 3em;
  padding: 1em 2em;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg,#a93bfe,#5e3bbe);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.pricing-palden .pricing-action:hover,
.pricing-palden .pricing-action:focus {
  background: linear-gradient(135deg,#ac32e4,#ac32e4);
}

.pricing-palden .pricing-item--featured .pricing-deco {
  padding: 5em 0 8.885em 0;
}
ul.list.pricing_list {
  padding-left: 50px;
}
.pricing_list p{
  color: #21272a;
  margin-bottom: 10px;
}
.pricing_list .p-light{
  color: #7d7a86;
}
.pricing-title-name{font-size: 2em !important;text-decoration: underline;}
/****** footer ******/
#footer{
  background: rgba(17, 7, 45, 1);
}
.footerMenu {
  text-decoration: none;
  color: #ffffff;
  list-style: none;
}
.footer_bar {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50.27%, rgba(255, 255, 255, 0) 100%);
  border: none;
  opacity: 1;
}
@media (max-width: 768px) {
  .footerMenu{
    display: none !important;
  }
  .footer_logo{
    text-align: center;
  }
}
/******* Login ******/
#validation_text{
  font-size: 12px;
  text-align: center;
  color: #ff6666;
}
.chatagentic_form{
  display: flex;
  overflow: hidden;
}
.chatagentic_form .form-control{
  height: 50px;
}
.chatagentic_form .input-group-text i{
  color: #5e3bbe;
  font-weight: bold;
  font-size: 25px;
}
.chatagentic_form .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #5e3bbe;
  outline: 0;
  box-shadow: none;
}
.toastify-top{top:85px !important}
/******* enquiry form ******/
.chatagentic_form textarea.form-control{
  height: 70px;
}
/******* reset password form ******/
#password_setting h6{font-size: 13px;}
#password_setting {
  display:block;
  background: #f1f1f1;
  color: #000;
  position: relative;
  padding: 10px;
  margin-top: 10px;
}
#password_setting p {
  padding: 0px 20px;
  font-size: 13px;
  margin-bottom: 5px;
}
#password_setting .valid {
  color: #009845;
}
#password_setting .valid:before {
  position: relative;
  left: -5px;
  content: "\f058";
  font-family: "Font Awesome 6 Free";
}
#password_setting .invalid {
  color: #808080;
}
#password_setting .invalid:before {
  position: relative;
  left: -5px;
  content: "\f057";
  font-family: "Font Awesome 6 Free";
}
/******* WhatsApp Icon ******/
.WhatsApp_float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:25px;
	left  :40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:34px;
  z-index:100;
}
