/********** Template CSS **********/
:root {
  --primary: #800080;
  --secondary: #999999;
  --light: #dea5de12;
  --dark: #111111;
  --white: #FFFFFF;
  --lightRosePink :#db8f9c;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 60px;
  z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 500 !important;
}
body{
  background: #dac4e21c;
}
.text-primary{
  color: var(--primary);
}
.text-lightRosePink{
  color: var(--lightRosePink);
}
.subtitle{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--lightRosePink);
  letter-spacing: .15em;
  font-size: 14px !important;
  text-transform: capitalize;
}
.bg-light{
  background: var(--light) !important;
}
.display-6{
  /* color: linear-gradient(to right, #d25d91, #c6809c); */
  font-family: inherit; /* Inherit the font-family of the parent element */
  background: linear-gradient(to right, #8a4785, #c6809c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}

.navbar .navbar-brand {
  height: 75px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--dark);
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover{
  color: var(--primary);
}
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
  font-weight: bold;
  font-size: 18px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link  {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #EEEEEE;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}

.navbar .btn:hover {
  color: #FFFFFF !important;
  background: var(--primary) !important;
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--secondary);
}


/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
}

.service-item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: -80px;
  right: -80px;
  border: 80px solid;
  transform: rotate(45deg);
  opacity: 1;
  transition: .5s;
}

.service-item.bg-white::after {
  border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
  border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
  opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
  position: relative;
}

.roadmap-carousel::before {
  position: absolute;
  content: "";
  height: 0;
  width: 100%;
  top: 20px;
  left: 0;
  border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 6px;
  left: 50%;
  margin-left: -15px;
  background: #FFFFFF;
  border: 2px solid var(--primary);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--primary);
}

.roadmap-carousel .roadmap-item {
  position: relative;
  padding-top: 150px;
  text-align: center;
}

.roadmap-carousel .roadmap-item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 115px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 111px;
  left: 50%;
  margin-left: -7px;
  transform: rotate(45deg);
  background: var(--primary);
}

.roadmap-carousel .owl-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 22px;
  color: var(--white);
  background: var(--primary);
  transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
  color: var(--primary);
  background: var(--light);
}


/*** FAQs ***/
.accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
}

.accordion .accordion-button {
  background: var(--light);
  border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
  color: #FFFFFF;
  background: var(--primary);
  box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
  padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--secondary);
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--secondary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: var(--primary);
  border: 1px solid var(--primary);
}

.footer-link{
  color: var(--secondary);
}
.footer-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}
.footer .btn.btn-square:hover {
  color: #FFFFFF;
  background: var(--primary);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
  color: var(--primary);
}

.footer .copyright a:hover {
  color: var(--dark);
}
.service-img{
  width: 30% !important
}
.whyus-img{
  width: 20% !important
}
/* .owl-carousel div{
border-radius: 25px !important;
border-bottom: 5px solid #800080;
} */
/* .owl-item{
max-width: 300px !important;
width: 100% !important;
} */
.project-item{
  height: 300px;
  border-radius: 25px !important;
  border-bottom: 5px solid #800080;
}
.project-img{
  width: 100px !important;
  margin-bottom: 5px;
}
.bookmark{
  top: 20px;
  /*position: absolute;*/
  width: 230px;
  height: 230px;
  padding: 20px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background: #80008036;
  border-bottom: 5px solid #800080;
}
.expertise{
  position: relative;
  height: 300px
}
.expertise-img{
  width: 100%;
  height: auto;

}

.card{
  border: 3px solid #fbc2cc !important;
  border-radius: 30px !important;
}
.btn-check:checked+.btn-primary:focus, .btn-check:active+.btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .25rem #8000806e !important;
}
.btn-primary:focus {

  box-shadow: 0 0 0 .25rem #8000806e !important;
}
@media (max-width: 768px) {
  /* .bookmark{
  width: 100px;
  height: 100px;
}
.expertise{
max-width: 150px;
width: 120px;
height: 120px; */
/* } */
/* custom */
.owl-item .expertise{
      top: 22px;

}
.bookmark{
      margin: auto;
}
.container-fluid .crafter-logo {
    margin: auto !important;
    text-align: center !important;
}
  .container-fluid .crafter-logo img{
      margin-left: 0px !important;
  }
}


.typewriter p {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--lightRosePink);
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

/* Typing Effect */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* Blinking Cursor Effect */
@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--lightRosePink); }
}

/* Additional styling to mimic the cursor */
.typewriter p::after {
  content: '';
  border-right: .15em solid var(--lightRosePink);
  animation: blink-caret .75s step-end infinite;
}

.solgen{
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 900;
  color: var(--lightRosePink);
  letter-spacing: .15em;
}
.error{
  color: red;
}
.toast-success {
  background-color: #4caf50 !important; /* Green color */
}

/* Error Toast */
.toast-error {
  background-color: #f44336 !important;
}

/* Warning Toast */
.toast-warning {
  background-color: #ff9800 !important; /* Orange color */
}
.requied{
  color:red;
}
.btn-primary{
  border: none;
  padding-left: 20px !important;
  padding-right: 20px !important;
  border-radius: 15px !important;
  background: linear-gradient(to right, #800080, #ffc0cb) !important;
}

.footer-link svg{
      margin-top: -4px;
      font-size: 10px;
    width: 16px;
    margin-right: 1rem !important;
    color: var(--secondary);
}
svg path {
    fill: var(--secondary);
}
