/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Features
- Details Lightbox
- Statistics
- Testimonials
- Pricing
- Conclusion
- Footer
- Copyright
- Back To Top Button
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds - light gray #f1f9fc
- Buttons, icons - purple #594cdaF
- Buttons, icons - red #eb427e
- Headings text - black #252c38
- Body text - dark gray #6b747b
******************************************/

/**************************/
/*     General Styles     */
/**************************/

body,
p {
  color: #6b747b;
  font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

h1 {
  color: #252c38;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3.125rem;
  letter-spacing: -0.5px;
}

h2 {
  color: #252c38;
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 2.625rem;
  letter-spacing: -0.4px;
}

h3 {
  color: #252c38;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.25rem;
  letter-spacing: -0.3px;
}

h4 {
  color: #252c38;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.2px;
}

h5 {
  color: #252c38;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.625rem;
}

h6 {
  color: #252c38;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375rem;
}

.h1-large {
  font-size: 2.875rem;
  line-height: 3.5rem;
}

.p-large {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.p-small {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.bg-gray {
  background-color: #f1f9fc;
}

.container {
  margin-left: auto;
  margin-right: auto;
}

.btn-solid-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #594cda;
  border-radius: 32px;
  background-color: #594cda;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-reg:hover {
  border: 1px solid #594cda;
  background-color: transparent;
  color: #594cda;
  /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-solid-lg {
  display: inline-block;
  padding: 1.625rem 2.75rem 1.625rem 2.75rem;
  border: 1px solid #594cda;
  border-radius: 32px;
  background-color: #594cda;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
  margin-right: 0.25rem;
  margin-bottom: 1.25rem;
  margin-left: 0.25rem;
}

.btn-solid-lg:hover {
  border: 1px solid #594cda;
  background-color: transparent;
  color: #594cda;
  /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-solid-lg .fab {
  margin-right: 0.5rem;
  font-size: 1.25rem;
  line-height: 0;
  vertical-align: top;
}

.btn-solid-lg .fab.fa-google-play {
  font-size: 1rem;
}

.btn-solid-lg.secondary {
  border: 1px solid #eb427e;
  background-color: #eb427e;
}

.btn-solid-lg.secondary:hover {
  border: 1px solid #eb427e;
  background: transparent;
  color: #eb427e;
  /* needs to stay here because of the color property of a tag */
}

.btn-outline-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #252c38;
  border-radius: 32px;
  background-color: transparent;
  color: #252c38;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-reg:hover {
  background-color: #252c38;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-lg {
  display: inline-block;
  padding: 1.625rem 2.75rem 1.625rem 2.75rem;
  border: 1px solid #252c38;
  border-radius: 32px;
  background-color: transparent;
  color: #252c38;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-lg:hover {
  background-color: #252c38;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-sm {
  display: inline-block;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border: 1px solid #252c38;
  border-radius: 32px;
  background-color: transparent;
  color: #252c38;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  background-color: #252c38;
  color: #ffffff;
  text-decoration: none;
}

.list .fas {
  color: #594cda;
  font-size: 0.75rem;
  line-height: 1.625rem;
}

.list div {
  flex: 1 1 0%;
  margin-left: 0.375rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.label-control {
  position: absolute;
  top: 0.875rem;
  left: 1.875rem;
  color: #7d838a;
  opacity: 1;
  font-size: 0.875rem;
  line-height: 1.5rem;
  cursor: text;
  transition: all 0.2s ease;
}

.form-control-input:focus+.label-control,
.form-control-input.notEmpty+.label-control,
.form-control-textarea:focus+.label-control,
.form-control-textarea.notEmpty+.label-control {
  top: 0.125rem;
  color: #6b747b;
  opacity: 1;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-control-input,
.form-control-select {
  display: block;
  /* needed for proper display of the label in Firefox, IE, Edge */
  width: 100%;
  padding-top: 1.125rem;
  padding-bottom: 0.125rem;
  padding-left: 1.8125rem;
  border: 1px solid #d0d5e2;
  border-radius: 25px;
  background-color: #ffffff;
  color: #6b747b;
  font-size: 0.875rem;
  line-height: 1.875rem;
  transition: all 0.2s;
  -webkit-appearance: none;
  /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 3.25rem;
  color: #7d838a;
}

select {
  /* you should keep these first rules in place to maintain cross-browser behavior */
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-image: url("../images/down-arrow.png");
  background-position: 96% 50%;
  background-repeat: no-repeat;
  outline: none;
}

.form-control-textarea {
  display: block;
  /* used to eliminate a bottom gap difference between Chrome and IE/FF */
  width: 100%;
  height: 14rem;
  /* used instead of html rows to normalize height between Chrome and IE/FF */
  padding-top: 1.5rem;
  padding-left: 1.3125rem;
  border: 1px solid #d0d5e2;
  border-radius: 4px;
  background-color: #ffffff;
  color: #6b747b;
  font-size: 0.875rem;
  line-height: 1.5rem;
  transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
  border: 1px solid #a1a1a1;
  outline: none;
  /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
  border: 1px solid #a1a1a1;
}

.checkbox {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

input[type="checkbox"] {
  vertical-align: -10%;
  margin-right: 0.5rem;
}

.form-control-submit-button {
  display: inline-block;
  width: 100%;
  height: 3.25rem;
  border: 1px solid #594cda;
  border-radius: 32px;
  background-color: #594cda;
  color: #252c38;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.form-control-submit-button:hover {
  border: 1px solid #252c38;
  background-color: transparent;
  color: #252c38;
}

/* Fade-move Animation For Details Lightbox - Magnific Popup */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
  -ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
  transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(37.5rem) rotateX(0);
  -ms-transform: translateY(0) perspective(37.5rem) rotateX(0);
  transform: translateY(0) perspective(37.5rem) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
  -ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
  transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
}

/* dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* end of fade-move animation for details lightbox - magnific popup */

/**********************/
/*     Navigation     */
/**********************/

.navbar {
  position: relative;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0.75rem;
  transition: all 0.2s ease;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-toggler-icon {
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.navbar-collapse {
  flex-basis: 100%;
}

.offcanvas-collapse {
  position: fixed;
  top: 3.25rem;
  /* adjusts the height between the top of the page and the offcanvas menu */
  bottom: 0;
  left: 100%;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  overflow-y: auto;
  visibility: hidden;
  background-color: #ffffff;
  transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}

.offcanvas-collapse.open {
  visibility: visible;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.nav-link {
  display: block;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  color: #6b747b;
  text-decoration: none;
  line-height: 0.875rem;
  transition: all 0.2s ease;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown.show>a,
.nav-link:hover,
.nav-link.active {
  color: #ff6e84;
  text-decoration: none;
}

.dropdown-menu {
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #212529;
  list-style: none;
  background-color: #ffffff;
  background-clip: padding-box;
  border-radius: 0.25rem;
  animation: fadeDropdown 0.2s;
  /* required for the fade animation */
}

@keyframes fadeDropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.dropdown-menu.show {
  display: block;
  top: 90%;
  left: auto;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1.5rem;
  clear: both;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  color: #6b747b;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0.875rem;
  text-decoration: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
  text-decoration: none;
  background-color: #f1f9fc;
  color: #ff6e84;
}

.dropdown-divider {
  overflow: hidden;
  width: 100%;
  height: 1px;
  margin: 0.5rem auto 0.5rem auto;
  background-color: #d4dce2;
}

/* end of dropdown menu */

/*****************/
/*    Header     */
/*****************/
.header {
  background: #ffffff;
}

/********************/
/*     Features     */
/********************/
.cards-1 {
  padding-top: 4rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

.cards-1 .card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
  margin-bottom: 2rem;
}

.cards-1 .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cards-1 .card-image {
  margin-bottom: 1.5rem;
}

.cards-1 .card-image img {
  width: 70px;
  height: 70px;
  margin-right: auto;
  margin-left: auto;
}

.cards-1 .card-body {
  padding: 0;
}

.cards-1 .card-title {
  margin-bottom: 0.375rem;
}

/****************************/
/*     Details Lightbox     */
/****************************/
.lightbox-basic {
  position: relative;
  max-width: 1150px;
  margin: 2.5rem auto;
  padding: 3rem 1rem;
  background-color: #ffffff;
  text-align: left;
}

/* Action Button */
.lightbox-basic .btn-solid-reg.mfp-close {
  position: relative;
  width: auto;
  height: auto;
  color: #ffffff;
  opacity: 1;
  font-weight: 600;
  font-family: "Open Sans";
}

.lightbox-basic .btn-solid-reg.mfp-close:hover {
  color: #594cda;
}

/* end of action Button */

/* Back Button */
.lightbox-basic .btn-outline-reg.mfp-close.as-button {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 0.375rem;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #252c38;
  background-color: transparent;
  color: #252c38;
  opacity: 1;
  font-family: "Open Sans";
}

.lightbox-basic .btn-outline-reg.mfp-close.as-button:hover {
  background-color: #252c38;
  color: #ffffff;
}

/* end of back button */

/* Close X Button */
.lightbox-basic button.mfp-close.x-button {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 44px;
  height: 44px;
  color: #555555;
}

/* end of close x button */

/**********************/
/*     Statistics     */
/**********************/
.counter {
  padding-top: 2rem;
  padding-bottom: 4.5rem;
  text-align: center;
}

.counter #counter {
  margin-bottom: 0.75rem;
}

.counter #counter .cell {
  display: inline-block;
  width: 120px;
  margin-right: 1.75rem;
  margin-bottom: 3.5rem;
  margin-left: 1.75rem;
  vertical-align: top;
}

.counter #counter .counter-value {
  color: #252c38;
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 3.75rem;
  vertical-align: middle;
}

.counter #counter .counter-info {
  margin-bottom: 0;
  font-size: 0.875rem;
  vertical-align: middle;
}

/************************/
/*     Testimonials     */
/************************/

.slider-1 .slider-container {
  position: relative;
}

.slider-1 .swiper-container {
  position: static;
  width: 86%;
  text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
  /* even if you can't see it chrome you can see it on mobile device */
  outline: none;
}

.slider-1 .swiper-button-prev {
  left: -14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
  background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
  right: -14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
  background-size: 18px 28px;
}

.slider-1 .card {
  position: relative;
  border: none;
  background-color: transparent;
}

.slider-1 .card-image {
  width: 80px;
  height: 80px;
  margin-right: auto;
  margin-bottom: 1.25rem;
  margin-left: auto;
  border-radius: 50%;
}

.slider-1 .testimonial-author {
  margin-bottom: 0;
  color: #252c38;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
}

/*******************/
/*     Pricing     */
/*******************/
.cards-2 {
  position: relative;
  padding-top: 8rem;
  background: linear-gradient(rgba(50, 60, 70, 0.9), rgba(50, 60, 70, 0.9)),
    url("../images/pricing-background.jpg") center center no-repeat;
  background-size: cover;
  text-align: center;
}

.cards-2 .card {
  position: relative;
  display: block;
  background-color: #ffffff;
  max-width: 330px;
  margin-right: auto;
  margin-bottom: 6rem;
  margin-left: auto;
  border: 1px solid #bcc4ca;
  border-radius: 8px;
}

.cards-2 .card .card-body {
  padding: 3rem 1.75rem 2.25rem 1.75rem;
}

.cards-2 .card .card-title {
  margin-bottom: 1rem;
  color: #eb427e;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.875rem;
  text-align: center;
}

.cards-2 .card p {
  margin-bottom: 1.25rem;
  text-align: left;
}

.cards-2 .card .value {
  color: #252c38;
  font-weight: 600;
  font-size: 5rem;
  line-height: 5rem;
  text-align: center;
}

.cards-2 .card .currency {
  margin-right: 0.375rem;
  color: #252c38;
  font-size: 2rem;
  vertical-align: 80%;
}

.cards-2 .card .frequency {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  text-align: center;
}

.cards-2 .card .button-wrapper {
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  left: 0;
  text-align: center;
}

.cards-2 .card .btn-solid-reg:hover {
  background-color: #ffffff;
}

/* Best Value Label */
.cards-2 .card .label {
  position: absolute;
  top: 0;
  right: 0;
  width: 10.625rem;
  height: 10.625rem;
  overflow: hidden;
}

.cards-2 .card .label .best-value {
  position: relative;
  width: 13.75rem;
  padding: 0.3125rem 0 0.3125rem 4.125rem;
  background-color: #eb427e;
  color: #ffffff;
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
  -ms-transform: rotate(45deg) translate3d(0, 0, 0);
  transform: rotate(45deg) translate3d(0, 0, 0);
}

/* end of best value label */

/**********************/
/*     Conclusion     */
/**********************/
.basic-5 {
  padding-top: 4.5rem;
  padding-bottom: 7.5rem;
  background: url("../images/conclusion-background.jpg") center center no-repeat;
  background-size: cover;
  text-align: center;
}

/******************/
/*     Footer     */
/******************/
.footer {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(197, 234, 249, 1));
  text-align: center;
}

.footer a {
  text-decoration: none;
}

.footer .fa-stack {
  width: 2em;
  margin-bottom: 1.25rem;
  margin-right: 0.375rem;
  font-size: 1.5rem;
}

.footer .fa-stack .fa-stack-1x {
  color: #252c38;
  transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
  color: #ffffff;
  transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
  color: #ffffff;
}

.footer .fa-stack:hover .fa-stack-2x {
  color: #252c38;
}

/*********************/
/*     Copyright     */
/*********************/
.copyright {
  padding-top: 1.5rem;
  background-color: #c5eaf9;
  text-align: center;
}




/*********************/
/* footeri */

/* Footer Styles */
.footeri {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background: linear-gradient(136deg, #f093fb 0%, #e6c3ff 50%, #f5e6ff 100%);
  text-align: center;
  color: #6b747b;
}

.footeri a {
  text-decoration: none;
  color: #252c38;
}

.footeri .fa-stack {
  width: 2em;
  margin-bottom: 1.25rem;
  margin-right: 0.375rem;
  font-size: 1.5rem;
}

.footeri .fa-stack .fa-stack-1x {
  color: #252c38;
  transition: all 0.2s ease;
}

.footeri .fa-stack .fa-stack-2x {
  color: #ffffff;
  transition: all 0.2s ease;
}

.footeri .fa-stack:hover .fa-stack-1x {
  color: #ffffff;
}

.footeri .fa-stack:hover .fa-stack-2x {
  color: #252c38;
}

/* Copyright Styles */
.copyrighti {
  padding-top: 1.5rem;
  background-color: #f5e6ff;
  text-align: center;
  color: #6b747b;
}

/******************************/
/*     Back To Top Button     */
/******************************/
a.back-to-top {
  position: fixed;
  z-index: 999;
  right: 12px;
  bottom: 12px;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 30px;
  background: #343e48 url("../images/up-arrow.png") no-repeat center 47%;
  background-size: 18px 18px;
  text-indent: -9999px;
}

a:hover.back-to-top {
  background-color: #000000;
}

/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  background-color: #f1f9fc;
}

.ex-basic-1 .list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.ex-basic-1 .text-box {
  padding: 1.25rem 1.25rem 0.5rem 1.25rem;
  background-color: #f1f9fc;
}

.ex-cards-1 .card {
  border: none;
  background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
  width: 2em;
  font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  color: #ff6e84;
}

.ex-cards-1 .card .fa-stack-1x {
  color: #ffffff;
  font-weight: 700;
  line-height: 2.125rem;
}

/*************************/
/*     Media Queries     */
/*************************/

/* Min-width 768px */
@media (min-width: 768px) {

  /* Extra Pages */
  .ex-basic-1 .text-box {
    padding: 1.75rem 2rem 0.875rem 2rem;
  }

  /* end of extra pages */
}

/* end of min-width 768px */

/* Min-width 1024px */
@media (min-width: 1024px) {
  /* General Styles */

  .btn-solid-lg {
    margin-right: 0.5rem;
    margin-left: 0;
  }

  /* end of general styles */

  /* Navigation */
  .navbar {
    background-color: transparent;
    flex-wrap: nowrap;
    justify-content: start;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.75rem;
  }

  .navbari {
    background-color: transparent;
    flex-wrap: nowrap;
    justify-content: start;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.75rem;
  }

  .navbar-collapse {
    flex-basis: auto;
  }

  .navbar.top-nav-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #f1f9fc;
  }

  .offcanvas-collapse {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    overflow-y: visible;
    visibility: visible;
  }

  .offcanvas-collapse.open {
    -webkit-transform: none;
    transform: none;
  }

  .nav-link {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }

  .dropdown-menu {
    position: absolute;
    margin-top: 0.25rem;
    box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.05);
  }

  .dropdown-divider {
    width: 90%;
  }

  /* end of navigation */

  /* Details Lightbox */
  .lightbox-basic {
    padding: 3rem 3rem;
  }

  /* end of details lightbox */

  /* Features */
  .cards-1 .card {
    display: inline-block;
    width: 306px;
    vertical-align: top;
  }

  .cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  /* end of features */

  /* Statistics */
  .counter {
    padding-top: 5rem;
  }

  /* end of statistics */

  /* Testimonials */
  .slider-1 .swiper-container {
    width: 92%;
  }

  .slider-1 .swiper-button-prev {
    left: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  .slider-1 .swiper-button-next {
    right: -16px;
    width: 22px;
    background-size: 22px 34px;
  }

  /* end of testimonials */

  /* Pricing */
  .cards-2 .card {
    display: inline-block;
    max-width: 100%;
    width: 312px;
    vertical-align: top;
  }

  .cards-2 .card:nth-of-type(3n + 2) {
    margin-right: 0.375rem;
    margin-left: 0.375rem;
  }

  /* end of pricing */

  /* Conclusion */
  .basic-5 {
    text-align: left;
  }

  /* end of conclusion */

  /* Copyright */
  .copyright {
    text-align: left;
  }

  .copyright .list-unstyled li {
    display: inline-block;
    margin-right: 1rem;
  }

  .copyright .statement {
    text-align: right;
  }

  /* end of copyright */

  /* Extra Pages */
  .ex-cards-1 .card {
    display: inline-block;
    width: 306px;
    vertical-align: top;
  }

  .ex-cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  /* end of extra pages */
}

/* end of min-width 1024px */

/* Min-width 1280px */
@media (min-width: 1280px) {

  /* General Styles */
  .h1-large {
    font-size: 3.125rem;
    line-height: 3.75rem;
  }

  .container {
    max-width: 72rem;
  }

  /* end of general styles */

  /* Features */
  .cards-1 .card {
    width: 342px;
    padding-right: 2.875rem;
    padding-left: 2.875rem;
  }

  .cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }

  /* end of features */

  /* Statistics */
  .counter #counter .cell {
    margin-right: 2.5rem;
    margin-left: 2.5rem;
  }

  .counter #counter .counter-value {
    font-size: 3.75rem;
    line-height: 4.25rem;
  }

  /* end of statistics */

  /* Pricing */
  .cards-2 .card {
    width: 335px;
  }

  .cards-2 .card:nth-of-type(3n + 2) {
    margin-right: 2.25rem;
    margin-left: 2.25rem;
  }

  .cards-2 .card .card-body {
    padding-right: 2.25rem;
    padding-left: 2.25rem;
  }

  /* end of pricing */

  /* Extra Pages */
  .ex-cards-1 .card {
    width: 328px;
  }

  .ex-cards-1 .card:nth-of-type(3n + 2) {
    margin-right: 2.875rem;
    margin-left: 2.875rem;
  }

  /* end of extra pages */

  /* Animated Background */
  .bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  }

  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
  }

  .shape-1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none"><rect x="10" y="12" width="44" height="12" rx="6" fill="%23ff6b9d"/><rect x="12" y="24" width="4" height="28" rx="2" fill="%23ff6b9d"/><rect x="20" y="24" width="4" height="28" rx="2" fill="%23ff6b9d"/><rect x="28" y="24" width="4" height="28" rx="2" fill="%23ff6b9d"/><rect x="36" y="24" width="4" height="28" rx="2" fill="%23ff6b9d"/><rect x="44" y="24" width="4" height="28" rx="2" fill="%23ff6b9d"/><rect x="52" y="24" width="4" height="28" rx="2" fill="%23ff6b9d"/></svg>') no-repeat center;
    background-size: contain;
    animation-delay: 0s;
  }

  .shape-2 {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 75px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none"><circle cx="18" cy="46" r="10" fill="%234834d4"/><circle cx="46" cy="46" r="10" fill="%234834d4"/><rect x="28" y="10" width="8" height="36" rx="4" fill="%234834d4" transform="rotate(30 32 28)"/><rect x="28" y="10" width="8" height="36" rx="4" fill="%234834d4" transform="rotate(-30 32 28)"/></svg>') no-repeat center;
    background-size: contain;
    animation-delay: 2s;
  }

  .shape-3 {
    bottom: 20%;
    left: 20%;
    width: 120px;
    height: 120px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff9ff3"><path d="M20.71 5.63l-2.34-2.34a1 1 0 0 0-1.41 0l-13.94 13.94a1 1 0 0 0-.21 1.09L3 21a1 1 0 0 0 1 1l2.58-.46a1 1 0 0 0 1.09-.21l13.94-13.94a1 1 0 0 0 0-1.41zM6.83 18.17L5.42 19.58l-1.21-.22.75-4.27 1.31-1.31zm2.69-2.69l-9.9-9.9 2.34-2.34 9.9 9.9zM18.17 8.42l-9.9 9.9-1.31 1.31a1 1 0 0 0-.29.71l-.22 1.21 4.27-.75a1 1 0 0 0 .71-.29l1.31-1.31z"/></svg>') no-repeat center;
    background-size: contain;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 4s;
  }

  .shape-4 {
    top: 30%;
    right: 40%;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23feca57"><path d="M3 6h18v2H3V6zm0 4h18v2H3v-2zm0 4h18v2H3v-2zm0 4h18v2H3v-2z"/></svg>') no-repeat center;
    background-size: contain;
    transform: rotate(45deg);
    animation-delay: 1s;
  }
}


/* Newsletter Section */
.newsletter {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  outline: none;
}

.newsletter-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .blog-title {
    font-size: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  main {
    padding: 1rem;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.2;
  }
}

/* Sparkle Animation */
.sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 3s linear infinite;
}

.sparkle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  top: 80%;
  right: 25%;
  animation-delay: 0.7s;
}

.sparkle:nth-child(3) {
  bottom: 40%;
  left: 60%;
  animation-delay: 1.4s;
}

.sparkle:nth-child(4) {
  top: 60%;
  right: 15%;
  animation-delay: 2.1s;
}

.sparkle:nth-child(5) {
  bottom: 70%;
  left: 30%;
  animation-delay: 2.8s;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}



/* Feature Section Styles */
.feature-detail {
  padding: 4rem 2rem;
  text-align: center;
}

.feature-detail h2 {
  color: #252c38;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-detail p {
  color: #6b747b;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-detail ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.feature-detail ul li {
  color: #6b747b;
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 0.5rem;
}

.feature-detail img {
  margin-bottom: 1.5rem;
}

.bg-gray {
  background-color: #f1f9fc;
}

.btn-solid-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem;
  border: 1px solid #594cda;
  border-radius: 32px;
  background-color: #594cda;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-reg:hover {
  background-color: transparent;
  color: #594cda;
}

.btn-outline-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem;
  border: 1px solid #252c38;
  border-radius: 32px;
  background-color: transparent;
  color: #252c38;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-reg:hover {
  background-color: #252c38;
  color: #ffffff;
}

/* Footer Styles */
.footer {
  background-color: #f1f9fc;
  padding: 3rem 2rem;
  text-align: center;
}

.footer p {
  color: #6b747b;
  margin-bottom: 1.5rem;
}

.footer .btn-solid-lg {
  margin: 0 0.5rem;
}
}


/* end of min-width 1200px */


/**************************/
/*   Custom MALA Styles   */
/**************************/

/* iPhone Mockup Styles */
.iphone-container {
  position: relative;
  width: 380px;
  height: auto;
  aspect-ratio: 453 / 912;
  max-width: 100%;
  margin: 0 auto;
}

.iphone-bezel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 12px solid #1a1a1a;
  border-radius: 45px;
  box-shadow:
    0 0 0 2px #2d2d2d,
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 6px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 10;
}

.dynamic-island {
  width: 120px;
  height: 32px;
  background: #000000;
  border-radius: 20px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 20;
}

.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
  background: #000;
}

/* Carousel Styles */
.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  flex-shrink: 0;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  pointer-events: none;
  background: #f5f5f7;
}

/* Navigation Arrows */
.carousel-nav {
  opacity: 0;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.iphone-screen:hover .carousel-nav {
  opacity: 1;
}

.carousel-nav:hover {
  background-color: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

/* Slide Counter */
.slide-counter {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* How It Works Indicator Buttons */
.how-it-works-indicator {
  border: none;
  cursor: pointer;
  outline: none;
}

.how-it-works-indicator.active {
  background-color: #7e22ce !important;
  color: white !important;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(126, 34, 206, 0.4);
}

.how-it-works-indicator:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(126, 34, 206, 0.3);
}

/* Step Description Highlighting - Minimalist Style */
.step-description {
  transition: all 0.3s ease;
}

.step-description h4 {
  color: #9ca3af;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step-description.active h4 {
  color: #7e22ce;
  font-weight: 700;
  transform: scale(1.05);
}

/* Touch/Swipe Support */
.iphone-screen {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Subtitle Transition */
#how-it-works-subtitle {
  transition: opacity 0.3s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .iphone-container {
    width: 260px;
    height: auto;
    aspect-ratio: 453 / 912;
  }

  .iphone-bezel {
    border-width: 6px;
    border-radius: 28px;
  }

  .iphone-screen {
    border-radius: 24px;
  }

  .dynamic-island {
    width: 80px;
    height: 24px;
    border-radius: 14px;
  }

  .carousel-nav {
    padding: 0.25rem;
  }

  .carousel-nav svg {
    width: 1rem;
    height: 1rem;
  }

  .how-it-works-indicator {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.25rem !important;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .iphone-container {
    width: 340px;
    height: auto;
    aspect-ratio: 453 / 912;
  }

  .iphone-bezel {
    border-width: 9px;
    border-radius: 36px;
  }

  .iphone-screen {
    border-radius: 29px;
  }

  .dynamic-island {
    width: 95px;
    height: 27px;
    border-radius: 17px;
  }
}

@media (min-width: 1024px) {
  .iphone-container {
    width: 400px;
    height: auto;
    aspect-ratio: 453 / 912;
  }
}

/* Section Spacing and Overlap Prevention */
section,
.header,
#header,
#services,
#details {
  position: relative;
  z-index: 1;
  clear: both;
}

/* Full Page Section for Details only */
#details {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* How To Section Responsive Optimization */
@media (max-width: 640px) {
  #details {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  #details .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  #how-it-works-subtitle {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  #details {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #how-it-works-subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

/* Services Section - Figma Style */
#services {
  overflow-x: hidden;
  background: #ffffff;
}

#services .container {
  width: 100%;
  max-width: 1400px;
}

/* Service Image Styling - Figma Design */
.service-image-figma {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  object-fit: cover;
}

.service-image-figma:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(126, 34, 206, 0.12);
}

/* Service Text Styling */
#services h3 {
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

#services p {
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive spacing for services */
@media (max-width: 1023px) {
  #services .space-y-12>*+* {
    margin-top: 3rem;
  }
}

@media (min-width: 1024px) {
  #services .space-y-12>*+* {
    margin-top: 4rem;
  }
}

/* Ensure no content overlaps */
body {
  overflow-x: hidden;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Account for fixed navbar */
}

/* Hero Section Full Height */
.header {
  position: relative;
}

/* Clear floats and prevent overlaps */
.container::after {
  content: "";
  display: table;
  clear: both;
}

/* Mobile Hamburger Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 9999;
  transition: right 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
  right: 0;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: white;
  padding: 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #252c38;
  transition: transform 0.2s ease;
}

.close-menu:hover {
  transform: rotate(90deg);
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin-top: 5rem;
}

.mobile-nav-list li {
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #252c38;
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.2s ease;
  border-bottom: 2px solid transparent;
}

.mobile-nav-link:hover {
  color: #9333ea;
  border-bottom-color: #9333ea;
}

.mobile-download-section {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  right: 2rem;
}

.hamburger-menu {
  cursor: pointer;
  transition: transform 0.2s ease;
  margin-left: auto;
  /* Push to the right */
}

@media (max-width: 1023px) {
  .hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hamburger-menu:hover {
  transform: scale(1.1);
}

@media (min-width: 1024px) {
  .mobile-menu-overlay {
    display: none;
  }
}

/* Hero Carousel Styles */
.hero-carousel-container {
  position: relative;
  min-height: 280px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-slide h1,
.hero-slide p {
  animation: slideInFromLeft 0.8s ease-out;
}

/* Hero Image Carousel Styles */
.hero-image-carousel {
  position: relative;
  width: 100%;
  overflow: visible;
}

.hero-image-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out, transform 1s ease-in-out;
  transform: scale(0.95);
}

.hero-image-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: scale(1);
}

/* Seamless Blend - No borders, shadows, or rounded corners */
.hero-blend-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 40px rgba(126, 34, 206, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-blend-image:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 15px 50px rgba(126, 34, 206, 0.2));
}

/* Size consistency for all hero images */
.hero-image-carousel {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

/* Enhancement for lower quality images (salon assets) */
.hero-image-slide:nth-child(2) .hero-blend-image,
.hero-image-slide:nth-child(3) .hero-blend-image {
  /* Subtle blur to soften pixelation */
  filter:
    drop-shadow(0 10px 40px rgba(126, 34, 206, 0.15)) contrast(1.05) brightness(1.02) saturate(1.1);
  /* Smooth rendering */
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: subpixel-antialiased;
  object-fit: contain;
  object-position: center;
}

/* Add a subtle overlay gradient to enhance lower quality images */
.hero-image-slide:nth-child(2)::after,
.hero-image-slide:nth-child(3)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(233, 213, 255, 0.03) 0%,
      rgba(147, 51, 234, 0.02) 50%,
      rgba(126, 34, 206, 0.03) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* Ensure smooth carousel wrapper */
.hero-image-carousel-wrapper {
  position: relative;
  z-index: 5;
}

/* Responsive sizing adjustments */
@media (max-width: 768px) {
  .hero-image-carousel {
    min-height: 350px;
  }

  .hero-image-slide {
    min-height: 350px;
  }

  .hero-blend-image {
    max-height: 400px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-image-carousel {
    min-height: 450px;
  }

  .hero-image-slide {
    min-height: 450px;
  }

  .hero-blend-image {
    max-height: 500px;
  }
}

@media (min-width: 1025px) {
  .hero-image-carousel {
    min-height: 550px;
  }

  .hero-image-slide {
    min-height: 550px;
  }

  .hero-blend-image {
    max-height: 650px;
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Carousel Indicators */
.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator.active {
  width: 32px;
  border-radius: 6px;
  background-color: #7e22ce;
}

.carousel-indicator:hover {
  background-color: #9333ea;
  transform: scale(1.1);
}

/* Header gradient background */
.header {
  position: relative;
  overflow: hidden;
}

/* Service card hover effects */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Purple gradient backgrounds for cards */
.purple-gradient-card {
  background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
  transition: all 0.3s ease;
}

.purple-gradient-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

/* Smooth image transitions */
img {
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.02);
}

/* Service section image styling */
.service-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Step indicator styling */
.step-indicator {
  transition: all 0.3s ease;
}

.step-indicator:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Enhanced button hover effects */
.btn-download {
  transition: all 0.3s ease;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Text gradient for purple text */
.text-purple-gradient {
  background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section spacing */
section {
  scroll-margin-top: 5rem;
}

/* Improved card shadows */
.card-shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.card-shadow:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Responsive image container */
.responsive-img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
}

/* Animation for floating elements */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Testimonial card enhancement */
.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Enhanced typography */
.hero-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-title {
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* Purple color palette */
:root {
  --mala-purple-100: #F3E8FF;
  --mala-purple-200: #E9D5FF;
  --mala-purple-500: #9333ea;
  --mala-purple-600: #7e22ce;
  --mala-pink-100: #FDE2F3;
}

/* Smooth transitions for all interactive elements */
button,
a,
.card {
  transition: all 0.3s ease;
}

/* Focus states for accessibility */
button:focus,
a:focus {
  outline: 2px solid var(--mala-purple-500);
  outline-offset: 2px;
}

/* Loading state placeholder */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Business Carousel Styles */
.business-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.business-carousel-track {
  display: flex;
  gap: 3rem;
  animation: gentleScroll 40s linear infinite;
  width: fit-content;
}

.business-carousel-track:hover {
  animation-play-state: paused;
}

.business-profile-card {
  flex-shrink: 0;
  text-align: center;
  min-width: 200px;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.business-profile-card:hover {
  transform: translateY(-8px);
}

/* Gradient fade overlays */
.carousel-gradient-left,
.carousel-gradient-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.carousel-gradient-left {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.carousel-gradient-right {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Smooth infinite scroll animation */
@keyframes gentleScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .business-carousel-track {
    gap: 2rem;
    animation: gentleScroll 30s linear infinite;
  }

  .business-profile-card {
    min-width: 150px;
    padding: 0.75rem;
  }

  .carousel-gradient-left,
  .carousel-gradient-right {
    width: 80px;
  }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .business-carousel-track {
    gap: 2.5rem;
    animation: gentleScroll 35s linear infinite;
  }

  .business-profile-card {
    min-width: 180px;
  }

  .carousel-gradient-left,
  .carousel-gradient-right {
    width: 120px;
  }
}