@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", serif;
}
.body {
  width: 100%;
  height: 100dvh;
}
/* 1 start */
.hd-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
.hd-section-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.section-heading {
  width: 76%;
  font-size: 43px;
  line-height: 57px;
  font-weight: bolder;
  background: linear-gradient(90deg, #101828 0%, #4a3d91 27%, #5338e6 74%, #2c2c2c 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.section-h4 {
  font-size: 19px;
  font-weight: bolder;
}
.section-hd-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.section-hd-para {
  width: 60%;
  font-size: 18px;
  font-family: "Inter", serif;
}
.flex {
  align-items: start;
}
.button-whitespace {
  white-space: nowrap;
}
/* 1 end */

/* 2nd start */
.section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 70px;
  margin-bottom: 6%;
}
.hero-main {
  width: 100%;
  height: 100%;
  background-color: white;
  overflow-x: clip;
  padding-top: 5%;
  position: relative;
}
.hero-bg {
  position: absolute;
  width: calc(100% - 2px);
  height: 82%;
  background: black;
  top: 28.4%;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.hero-img-div {
  scale: 1.238;
  overflow: hidden;
  transform: translateX(28px);
}

.hero-img {
  width: 100%;
  position: relative;
  bottom: 2;
  z-index: 2;
}
/* 2 done */
/* 3 */
.py-6 {
  padding-bottom: 3.5rem;
}

/* 3 */
/* 4 start */
.input-remove{
  display: none;
}
.hero-section {
  background: linear-gradient(270deg, #030208 0%, #5a49b8 21.4%, #493c91 48.4%, #2e265e 70.4%, #201a42 80.9%, #060410 100%);

  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}
.hero-text {
  color: white;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.2;
  padding: 2rem;
  text-align: justify;
}
.hero-text > img {
  width: 175px !important;
}
.form-section {
  background: white;
  border-radius: 15px;
  padding: 20px 20px;
  max-width: 600px;
  margin: 30px 30px;
  height: 327px;
}
.form-label {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.btn-primary {
  background-color: #7c3aed;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
}
.btn-primary:hover {
  background-color: #6d28d9;
}
.iti {
  width: 100%;
}
.iti__flag-container {
  right: auto;
  left: 0;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: #f3f4f6;
  border-radius: 8px 0 0 8px;
}
#phone {
  padding-left: 90px;
}
.input-left-div {
  display: flex;
  align-items: center;
}
.input-button {
  display: flex;
}
.input-hd {
  color: black;
}
@media (max-width: 768px) {
  .hero-section {
    border-radius: 0;
  }
  .hero-text {
    font-size: 1.8rem;
    padding: 1.5rem;
  }
  .hero-text > img {
    width: 120px !important;
  }
  .form-section {
    border-radius: 0;
  }
}

/* 4 end */


/* 5 start*/
#firstDiv,
#secondDiv,
#thirdDiv,
#fourthDiv,
#fifthDiv,
#sixthDiv {
  position: relative;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#firstDiv::before,
#secondDiv::before,
#thirdDiv::before,
#fourthDiv::before,
#fifthDiv::before,
#sixthDiv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #007bff;
  z-index: -1;
  transition: all 0.3s ease;
  border-radius: 8px;
}

#firstDiv::after,
#secondDiv::after,
#thirdDiv::after,
#fourthDiv::after,
#fifthDiv::after,
#sixthDiv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 2px solid #007bff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  opacity: 0;
  transition: all 0.3s ease;
  margin-bottom: 0px;
}

#firstDiv:hover::before,
#secondDiv:hover::before,
#thirdDiv:hover::before,
#fourthDiv:hover::before,
#fifthDiv:hover::before,
#sixthDiv:hover::before {
  width: 100%;
}

#firstDiv:hover::after,
#secondDiv:hover::after,
#thirdDiv:hover::after,
#fourthDiv:hover::after,
#fifthDiv:hover::after,
#sixthDiv:hover::after {
  opacity: 1;
}

.showBorder::after {
  opacity: 1 !important;
}

.step-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 17px;
}

.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.text-div {
  width: 70%;
  margin-left: 48px;
}

.image-div {
  width: 100%;
}

.sticky-image {
  position: sticky;
  top: 10px;
  bottom: 0px;
}
.left-div-advanced {
  width: 85%;
}
.text-left {
  margin: 0px;

}
.Advanced-para {
  text-align: justify;
  margin: 0px;
}
.advanced-img {
  height: 700px;
  /* background-color: green; */
}
.Integrated-paras{
  /* font-size: 18px; */
}
/* 5 end  */
/* responsive advanced start*/

.res-advanced-up {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 15px;
  display: none;
}

.res-upInner {
  width: 90%;
  row-gap: 10px;
  display: flex;
  flex-direction: column;
}

.res-advanced {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 25px;
  display: none;
}

.res-advanced-inner {
  width: 90%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.res-advance-box {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 20px 20px 20px 20px;
  margin-bottom: 20px;
  position: sticky;
  top: 80px;
  border-radius: 4px;
}

.res-advanced-hd {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: rgba(32, 26, 66, 1);
  font-family: "Inter", sans-serif;


}

.res-advanced-para {
  text-align: center;
  font-size: 16px;
  color: #5e587a;
}
.res-adv-p{
  color: #5e587a;
  font-size: 16px;
  text-align: center;
  padding-top: 15px;
}


.res-adv-para{
  text-align: center;
  font-size: 16px;
  color: #5e587a;
}
.res-advanced-img {
  width: 100%;
  height: auto;
}

/* responsive advanced end */

/* 6 */
.reduce-cost-main {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.reduce-cost-inner {
  display: flex;
  flex-direction: column;
  /* width: 100%; */
  row-gap: 60px;
}
.reduce-up {
}
.reduce-up-hd {
  font-family: 2rem;
  font-weight: bold;
  line-height: 57px;
  color: rgba(32, 26, 66, 1);
}
.reduce-down {
  display: flex;
  justify-content: space-between;
  gap: 17px;
}
.reduce-down-boxes {
  width: 100%;
  display: flex;
  background: #f7f8fb;
  padding: 28px 17px;
  border-radius: 25px;
  cursor: pointer;
}
.down-inner {
  width: 100%;
}
.hd-arrow {
  display: flex;
  column-gap: 8px;
  display: flex;
  align-items: center;
}
.reduce-arrow {
}
.down-inner-hd {
  font-size: 45px;
  font-weight: bolder;
}
.down-inner-para {
  font-size: 18px;
  line-height: 22px;
}
/* 6 */

/* 7 */
.advanced-slide-main {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 100px;
  background: linear-gradient(270deg, #030208 0%, #8557f7 43.29%, #7562e0 47.23%, #8557f7 50.73%, #060410 100%);
  padding: 30px;
  border-radius: 10px;
  cursor: pointer;
}
.advanced-slide-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advanced-up {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.advanced-cards {
  padding: 33px 20px 20px 20px;
  background-color: #201a42;
  border-radius: 4px;
  
}
.advanced-cards-inner {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.advanced-stars {
  display: flex;
  justify-content: space-between;
}
.rating {
  display: flex;
  column-gap: 10px;
}
.star-img {
  width: 16px;
  height: 16px;
}
.advanced-card-para {
  color: white;
}
.advanced-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.polo {
  display: flex;
}
.polo-graph {
  clip-path: polygon(0 0, 70% 0, 70% 60%, 0% 100%);
  width: 20px;
  height: 30px;
  background-color: #7562e0;
}
.advanced-profile-img {
  width: 50px;
  height: 50px;
}
.advanced-quote {
  width: 26px;
  height: 26px;
  position: relative;
  top: -21px;
  right: -34px;
}
.profile-texts {
}
.profile-hd {
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin-bottom: 0px;
}
.profile-para {
  color: white;
}
.testimonial-main {
  margin-top: 100px;
}
.testimonial-show {
  display: none;
}
/* 7 */

/* 8 */
.fvrt-tool-section{
  margin-bottom: 50px;
}
.social-all-img {
  display: flex;
  justify-content: center;
}
.social-all-img img {
}
.social-para {
  text-align: justify;
  width: 100%;
}

.why-bling-mg {
  margin-bottom: 40px;
}
/* 8 */

@media (min-width: 1399px) {
  .hd-section {
    justify-content: center;
  }
  .hd-section-inner {
    width: 87%;
  }
}

@media (max-width: 1400px) {
  .profile-para {
    color: white;
    font-size: 14px;
  }
  .profile-hd {
    font-size: 16px;
  }

  .advanced-card-para p {
    font-size: 14px;
  }
  .advanced-cards {
    padding: 23px 20px 7px 20px;
  }

  .advanced-cards-inner {
    gap: 5px;
  }

  .advanced-stars {
    margin-bottom: 8px;
  }

  .star-img {
    width: 14px;
    height: 14px;
  }
  .rating {
    display: flex;
    align-items: center;
  }
  .polo-graph {
    width: 20px;
    height: 25px;
  }
}

@media (max-width: 1200px) {
  .advanced-up {
    grid-template-columns: repeat(2, 1fr);
  }

  .advanced-profile {
    justify-content: flex-start;
    gap: 20px;
  }

  .advanced-cards {
    padding: 34px 33px 13px 33px;
  }

  .advanced-stars {
    margin-bottom: 13px;
  }
}

@media (max-width: 993px) {
  .noneee {
    display: none;
  }
  .res-advanced {
    display: flex;
  }
  .res-advanced-up {
    display: flex;
  }
  .hd-section-inner {
    text-align: center;
    margin-top: 20px;
  }
  .section-heading {
    width: 100%;
    font-size: 42px;
  }
  .section-hd-bottom {
    flex-direction: column;
    align-items: center;
  }
  .section-hd-para {
    width: 100%;
  }

  .trust-hd {
    text-align: center;
    margin-bottom: 30px !important;
  }

  .py-6 {
    padding-bottom: 1.5rem;
    padding-top: 3rem !important;
  }

  .hero-text {
    font-size: 26px;
  }

  .advanced-up {
    grid-template-columns: repeat(1, 1fr);
  }

  .advanced-profile {
    justify-content: flex-start;
    gap: 20px;
  }

  .advanced-cards {
    padding: 34px 33px 13px 33px;
    position: sticky;
    top: 79px;
  }

  .advanced-stars {
    margin-bottom: 13px;
  }
.testimonial-body{
  margin-top: 43px;
}
  .advanced-slide-main {
    padding: 30px 0px 40px 0px;
    background: none;
    margin-top: 0px;
  }
  .testimonial-hidden {
    display: none;
  }

  .testimonial-show {
    display: flex;
    color: white;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-top: 0px;
    gap: 10px;
  }

  .testimonial-body {
    background: linear-gradient(270deg, #030208 0%, #8557f7 43.29%, #7562e0 47.23%, #8557f7 50.73%, #060410 100%);
    padding-top: 40px;
  }
 
}

@media (max-width: 884px) {
  .reduce-down {
    flex-wrap: wrap;
    gap: 0px;
  }
  .reduce-down-boxes {
    width: 200px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .section-heading {
    font-size: 38px;
  }
  .trust-hd {
  }
  .hero-text {
    font-size: 26px;
    text-align: center;
  }
  .form-section {
    margin-top: 0px;
  }
  .reduce-down-boxes {
    margin-bottom: 30px;
  }

  .social-all-img {
    margin-bottom: 30px;
  }
  .reduce-up-hd{
    line-height: 44px;
  }
}

@media (max-width: 700px) {
  .reduce-up-hd {
    text-align: center;
    font-size: 1.8rem;
  }
  .reduce-down {
    flex-direction: column;
  }
  .reduce-down-boxes {
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
    background-color: #f7f8fb;
    padding: 25px 0px;
    border-radius: 17px;
  }
  .down-inner {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .down-inner-hd {
    font-size: 30px;
  }
  .down-inner-para {
    width: 60%;
  }
}
.down-inner-para {
  margin: 0;
}
@media (max-width: 610px) {
  .res-advanced-para {
    font-size: 16px;
    text-align: center;
  }
  .res-adv-p{
    font-size: 16px;
    text-align: center;
    padding-top: 15px;
  color: #5e587a;
  /* padding-right: 10px; */
  /* padding-left: 10px; */


  }
  .res-adv-para{
    font-size: 13px;
    padding: 10px 15px 0px 15px;
    text-align: justify;
    text-align-last:center ;
  color: #5e587a;

/* text-align: center; */
  }
  .res-advanced-hd {
    font-size: 23px;
  }
  .res-upInner {
    row-gap: 6px;
  }
  .section-heading {
    font-size: 32px;
    line-height: 45px;
  }
  .section-hd-para {
    font-size: 16px;
  }

  .py-6 {
    padding-bottom: 2rem;
    padding-top: 3.4rem !important;
  }
  .hero-text {
    font-size: 24px;
  }
  .reduce-up-hd {
    font-size: 1.6rem;
    line-height: 34px;
  }
  .down-inner-hd {
    font-size: 26px;
  }
  .down-inner-para {
    font-size: 17px;
  }

  .advanced-cards {
    padding: 17px 27px 0px 17px;
  }
  .advanced-slide-main {
    padding: 30px 0px 100px 0px;
  margin-bottom: 55px;

  }
  .advanced-card-para p {
    font-size: 13px;
  }
  .profile-hd {
    font-size: 14px;
  }

  .profile-para {
    font-size: 13px;
  }

  .full-social-main {
    padding: 0px 30px 0px 30px !important;
  }
}

@media (max-width: 576px) {
  .advanced-cards {
    padding: 17px 27px 0px 17px;
  }
  .advanced-slide-main {
    padding: 30px 0px 50px 0px;
  margin-bottom: 55px;

  }
.advanced-up{

  padding-right: 30px;
  padding-left: 30px;
}
}
@media (min-width: 769px) and (max-width: 993px) {
  .hero-text > img {
    width: 125px !important;
  }
}
@media (min-width: 993px) {
  .hero-text > img {
    width: 175px !important;
  }
}



@media (max-width: 470px) {
  .hero-text > img {
    width: 95px !important;
  }
  .section-heading {
     font-size: 30px ;       
    line-height: 44px; 
    padding-top: 10px;
    padding-right:10px ;
    padding-left: 10px;          
  }
  .section-h4 {
    font-size: 19px;             
    line-height: 25px;          
  }

  .section-hd-bottom {
    row-gap: 20px;
    margin-top: 8px;
  }
  .hd-section {
    margin-top: 23px;
  }

  .trust-hd {
    font-size: 1.577rem;
    margin-bottom: 30px !important;
    padding-top: 0rem !important;

  }

  .py-6 {
    padding-bottom: 1.5rem;
    padding-top: 2.5rem !important;
  }

  .hero-text {
    font-size: 19px;
    text-align: center;
  }
  #remove-padding {
    padding: 0px !important;
  }
  .form-section {
    border-radius: 10px;
    margin-bottom: 20px !important;
    width: 90%;
    /* margin-top: 0px; */
    margin: 0px 4px 4px 4px;
  }
  .reduce-up-hd {
    font-size: 1.3rem;
  }
  .down-inner-hd {
    font-size: 25px;
  }
  .down-inner-para {
    font-size: 15px;
  }
  #col-md-6 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .social-para {
    font-size: 13px !important;
    /* line-height: 25px; */
    margin-bottom: 8px !important;
  }


  .reduce-down-boxes{
    position: sticky;
    top: 80px;
  
  }
  .section-hd-para {
   
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 470px) and (max-width: 776px) {
  .form-section {
    border-radius: 10px;
  }

}

@media (max-width: 414px) {
  .res-advanced {
    margin-top: 40px;
  }
  .res-advance-box {
    padding: 15px 10px 10px 10px;
    border-radius: 0px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px,
      rgba(0, 0, 0, 0.07) 0px 16px 16px;
  }
  .res-advanced-hd {
    line-height: 35px;
    font-weight: 600;
    margin: 0px !important;
  }
  .section-h4 {
    font-size: 17px;
    line-height: 25px;
  }
  .section-hd-para {
    font-size: 15px;
  }
  .section-heading {
    line-height: 42px;
  }

  .advanced-cards {
    padding: 17px 30px 0px 30px;
  }
  .advanced-cards-inner {
    gap: 0px;
  }
  .advanced-up {
    gap: 13px;
  }
  .advanced-slide-main {
    padding: 30px 0px 40px 0px;
  }
  .advanced-card-para p {
    font-size: 11px;
  }
  .profile-hd {
    font-size: 12px;
  }
  .profile-texts {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .profile-para {
    font-size: 10px;
  }
  .hero-img-div {
    transform: translateX(6px);
  }
  .hero-bg {
    position: absolute;
    width: calc(100% + 2px);
    height: 86%;
    background: black;
    top: 24.4%;
    left: 50%;
    transform: translateX(-50%);
}
}

/* test */














  
/* security section */

.security-main-trust{
  margin-top: 100px;
}

.security-hd {
  color: #c2c5cb !important;
  text-align: center ;
  margin-bottom: 40px !important;
}


.security-trust-inner {
  display: flex;
  flex-direction: column;
}
.securtiy-img-div {
}
.security-trust-img {
  display: flex;
  justify-content: center;
}
.sec-trust-img {
  width: 290px;
  height: auto;
}

@media (max-width: 993px){
  .sec-trust-img {
    width: 250px;
  }
  .security-main-trust{
    margin-top: 50px;
  }
  
}
@media (max-width: 470px){
  .security-hd {
    font-size: 1.577rem;
    margin-top: 15px !important;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 430px){
  .security-hd {
   font-size: 1.577rem;
    
  }
}
@media (max-width: 420px) {
  .sec-trust-img {
    width: 80%;
    border: none;
    height: auto;
  }
}

@media (max-width: 400px){
  .security-hd {
    font-size: 1.577rem;
  }

}
/* security section */






 /* new section start */
.animated-main-section{
margin-bottom: 50px;
}

 .animated {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}


.mobile-tab {
  border-bottom: 1px solid rgb(255 255 255 / 0.3);
  padding: 16px;
  cursor: pointer;
}
.mobile-tab.active {
  background-color: rgb(255 255 255 / 0.1);
}
.mobile-tab img {
  display: none;
  width: 100%;
  height: auto;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .text-justify-mobile {
    text-align: justify;
  }
}
.mobile-tab {
  position: sticky;
  top: 100px;
  background: #281842;
}
.cardss {
  position: sticky;
  top: 72px;
}
 /* new section end */
/* Easily Integrate Bling with 5,000 section */

@media (min-width: 768px) {
  .md\:ps-5 {
    -webkit-padding-start: 1.25rem;
    padding-inline-start: 11.25rem;
  }
}
 @media (min-width: 641px) and (max-width: 2560px) {
  .zapier-img {
      max-width: 100px;
  }
}
@media (max-width: 640px) {
  .zapier-img {
    max-width: 75px;
  }
  .fvrt-section-top{
    margin-top: 20px !important;
  }
}
  @media (max-width: 640px) {
    .mobile-padding {
        padding: 2.5rem !important;
    }
}
.animate-text.visible,
      .animate-image.visible {
        opacity: 1;
        transform: translateY(0);
      }
/* Easily Integrate Bling with 5,000 section */