/*** Spinner Start ***/
/*** Spinner ***/


.web-color {
  color: #e1dafa;
  color: #aca6d0;
  color: #7872b4;
  color: #4f4c9d;
  color: #3a3284;
  color: #191133;
}

#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;
}

/*** Spinner End ***/


.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: .5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  background: var(--bs-primary) !important;
  color: var(--bs-white) !important;
  font-weight: 400;
  transition: 0.5s;
  border-radius: 50%;
}

.btn.btn-primary:hover {
  background: var(--bs-dark) !important;
  color: var(--bs-white) !important;
}

.btn.btn-light {
  background: var(--bs-light) !important;
  color: var(--bs-primary) !important;
  font-weight: 400;
  transition: 0.5s;
}

.btn.btn-light:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-light) !important;
}


.RotateMoveLeft {
  position: relative;
  animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
  position: relative;
  animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveLeft {
  0% {
    left: 0px;
  }

  50% {
    left: 40px;
  }

  100% {
    left: 0px;
  }
}

@keyframes RotateMoveRight {
  0% {
    right: 0px;
  }

  50% {
    right: 40px;
  }

  100% {
    right: 0px;
  }
}
/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-primary) !important;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
  max-height: 50px;
  transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

/* Navbar base */
.navbar-container {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-container.scrolled {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.navbar-primary {
  border: 1px solid var(--bs-primary) !important;
  color: var(--bs-primary) !important;
}

.navbar-white {
  background-color: var(--bs-white);
}

.nav-item {
  color: var(--bs-white) !important;
}

.navbar {
  transition: all ease .8s;
}

.nav-link-white {
  color: var(--bs-white) !important;
}

.home-nav-scrolled {
  background-color: #000000cf !important;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: none !important;  /* CHANGE: Prevent hover-open */
    visibility: hidden;
    opacity: 0;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: .5s;
  }

  /* OPEN STATE — shown only via JS */
  .navbar .nav-item.open > .dropdown-menu {
    display: block !important;
    visibility: visible;
    opacity: 1;
    transform: rotateX(0deg);
    background: var(--bs-light) !important;
  }
}



/* REMOVE hover-open dropdown completely */
.navbar .nav-item:hover .dropdown-menu {
  /* removed to disable hover open */
}

.collapse.navbar-collapse {
  transition: 0.5s;
}

@media (max-width: 992px) {
  nav.bg-transparent {
    background: transparent !important;
  }

  .navbar {
    z-index: 2;
  }

  .sticky-top.navbar-light {
    background: var(--bs-white) !important;
    padding: 0 20px 20px 20px !important;
  }

  nav.navbar {
    padding: 0 10px 30px 10px;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid  var(--bs-white);
    color:  var(--bs-white);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #DDDDDD;
  }

  .navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--bs-dark) !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45;
  }

  .hero-header {
    margin-top: -100px !important;
  }
}

/* REMOVE HOVER SUBMENU OPENING */
@media (min-width: 992px) {
  .submenu-wrapper:hover .submenu:not(.open) {
    /* removed to disable hover-opening submenus */
  }

  .navbar-light {
    position: fixed;
    width: 100%;
    top: 0;
    background: transparent !important;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    background: var(--bs-light) !important;
  }
}

/*** FIXED SUBMENU STYLES ***/
.submenu {
  display: none;
  width: 150%;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--bs-light);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* JS OPEN STATE */
.submenu.open {
  display: block;
  overflow:hidden;
}

.submenu-parent {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px !important;
  position: relative;
}

.submenu-parent .submenu-link {
  flex: 1;
  text-decoration: none;
  color: inherit !important;
}

.submenu-toggle {
  background: none;
  border: none;
  padding: 0 6px;
  cursor: pointer;
  color: inherit;
  font-size: 14px;
}

.submenu-toggle i {
  transition: transform 0.3s ease;
}

.submenu-toggle.open i {
  transform: rotate(180deg);
}

/* Mobile mode */
@media (max-width: 992px) {
  .submenu {
    position: static !important;
    width: 100% !important;
    margin-left: 1rem;
  }
}

/* Main services dropdown */
.dropdown-menu {
    display: none !important;
}
.dropdown-menu.open {
    display: block !important;
}

/* Submenu */
.submenu {
    display: none;
}
.submenu.open {
    display: block;
}



/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0 60px 0;
  /* margin-bottom: 6rem; */
  transition: 0.5s;
}

.bg-breadcrumb::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 300px;
  border: 80px solid rgba(247, 71, 128, 0.05);
  background: transparent;
  animation: RotateMoveSingle 5s linear infinite;
  z-index: -1;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
  z-index: 2;
}


@keyframes RotateMoveSingle {
  0% {
    -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
  }

  0% {
    bottom: 0px;
  }

  50% {
    left: -10px;
  }

  75% {
    bottom: 10%;
  }

  100% {
    bottom: 0px;
  }
}

.bg-breadcrumb::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 300px;
  border: 80px solid rgba(247, 71, 128, 0.04);
  background: transparent;
  animation: RotateMoveSingle 5s linear infinite;
  z-index: -1;
}

@keyframes RotateMoveSingle {
  0% {
    -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
  }

  0% {
    top: 0px;
  }

  50% {
    top: 10%;
  }

  100% {
    top: 0px;
  }
}

@media (max-width: 992px) {
  .bg-breadcrumb {
    padding-top: 100px !important;
  }
}

.bg-breadcrumb .breadcrumb-item a {
  color: var(--bs-dark) !important;
}


.breadcrumb-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.breadcrumb-animation li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(102, 16, 242, 0.07);
  animation: animate 25s linear infinite;
  bottom: -150px;

}

.breadcrumb-animation li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.breadcrumb-animation li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.breadcrumb-animation li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.breadcrumb-animation li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.breadcrumb-animation li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.breadcrumb-animation li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.breadcrumb-animation li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.breadcrumb-animation li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.breadcrumb-animation li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.breadcrumb-animation li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {

  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }

}

/*** Single Page Hero Header End ***/


/*** Hearo Header Start ***/
/* .header::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--bs-light);
    border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
    animation: bgMove 5s linear infinite;
    z-index: -1;
} */

@keyframes bgMove {
  0% {
    right: 0px;
  }

  50% {
    right: 20px;
  }

  100% {
    right: 0px;
  }
}


@keyframes RotateMoveHeader {
  0% {
    -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
  }


  0% {
    bottom: 0px;
  }

  50% {
    left: -10px;
  }

  75% {
    bottom: 9%;
  }

  100% {
    bottom: 0px;
  }
}

.hero-header {
  padding-top: 130px;
  /* padding-bottom: 20px; */
  position: relative;
}

/* .hero-header::after {
  content: "";
  position: absolute;
  left: 100px;
  bottom: 100px;
  width: 58px;
  height: 50px;
  background: url(../img/sty-1.png) center center no-repeat;
  animation: RotateMoveSty-3 45s linear infinite;
  transition: 0.5s;
  z-index: -1;

} */

@keyframes RotateMoveSty-3 {
  0% {
    left: 100px;
  }

  40% {
    bottom: -0px;
  }

  50% {
    left: 700px;
  }

  70% {
    bottom: 500px;
  }

  80% {
    left: 400px;
  }

  95% {
    bottom: -0px;
  }

  100% {
    left: 100px;
  }
}

/* .hero-header::before {
  content: "";
  position: absolute;
  left: 100px;
  bottom: 100px;
  width: 300px;
  height: 300px;
  border-radius: 150px;
  border: 30px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: RotateMoveSty-4 45s linear infinite;
  transition: 0.5s;
  z-index: -1;

} */

@keyframes RotateMoveSty-4 {
  0% {
    left: 100px;
  }

  40% {
    bottom: -0px;
  }

  50% {
    left: 700px;
  }

  70% {
    bottom: 500px;
  }

  80% {
    left: 400px;
  }

  95% {
    bottom: -0px;
  }

  100% {
    left: 100px;
  }
}


.hero-header .rotate-img {
  position: absolute;
  top: 70px;
  left: 20px;
}

.hero-header .rotate-img .rotate-sty-2 {
  position: absolute;
  top: 100px;
  left: 50px;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  border: 5px solid rgba(247, 71, 128, 0.1);
  background: transparent;
  animation: RotateMoveSty-2 45s linear infinite;
  transition: 0.5s;

}

@keyframes RotateMoveSty-2 {
  0% {
    left: 0px;
  }

  40% {
    top: -30px;
  }

  50% {
    left: 500px;
  }

  70% {
    top: 200px;
  }

  80% {
    left: 100px;
  }

  95% {
    top: -30px;
  }

  100% {
    left: 0px;
  }
}

.hero-header .rotate-img img {
  position: relative;
  animation: RotateMove 30s linear infinite;
  z-index: -1;
}

@keyframes RotateMove {
  0% {
    left: 0px;
  }

  50% {
    left: 200px;
  }

  100% {
    left: 0px;
  }
}


@media (max-width: 992px) {
  .hero-header .rotate-img img {
    margin-top: 100px;
  }

}

/*** Hero Header End ***/


/*** Service Start ***/
.service .service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.service .service-item,
.service .service-item .service-icon,
.service .service-item a {
  transition: 0.5s;
}

.service .service-item:hover {
  background: rgba(102, 16, 242, 0.09);
  border: 1px;
}


.service .service-item:hover .service-icon,
.service .service-item:hover a {
  background: var(--bs-white) !important;
}

.service .service-item:hover a:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-white);
}

/*** Service End ***/


/*** Features Start ***/
.feature .feature-img {
  background: var(--bs-light);
  border-radius: 58% 42% 21% 79% / 30% 29% 71% 70%;
}

/*** Features End ***/


/*** Pricing Start ***/
.price .price-item {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

.price .price-item:hover {
  background: var(--bs-white) !important;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.price .price-item .pice-item-offer {
  position: absolute;
  width: 200px;
  height: 110px;
  top: -45px;
  right: -80px;
  background: var(--bs-primary) !important;
  color: var(--bs-white);
  transform: rotate(42deg);
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 10px;
}

/*** Pricing End ***/


/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  background: rgba(102, 16, 242, 0.2);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-info {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 20px;
  background: rgba(102, 16, 242, 0.2);
  color: var(--bs-white) !important;
  display: flex;
  align-items: end;
  justify-content: space-between;
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-info {
  background: rgba(0, 0, 0, .4);
}


.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
  transform: scale(1.3);
}

/*** Blog End ***/


/*** Testimonial Start ***/
.testimonial {
  position: relative;
  background: var(--bs-light);
  overflow: hidden;
  z-index: 1;
}

.testimonial::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/testimonial-img-2.jpg) center center no-repeat;
  animation: TestimonialMoveLeft 100s linear infinite;
  z-index: -1;

}

.testimonial::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/testimonial-img-3.jpg) center center no-repeat;
  animation: TestimonialMoveRight 100s linear infinite;
  z-index: -1;

}

@keyframes TestimonialMoveLeft {
  0% {
    left: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    left: 100%;
  }

  75% {
    top: 80%;
  }

  100% {
    left: 0px;
  }
}

@keyframes TestimonialMoveRight {
  0% {
    right: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    right: 100%;
  }

  75% {
    top: 80%;
  }

  100% {
    right: 0px;
  }
}

.testimonial .testimonial-carousel.owl-carousel {
  position: relative;
  padding: 0 35px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 16, 242, 0.09);
  color: var(--bs-primary);
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 16, 242, 0.09);
  color: var(--bs-primary);
  transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
  color: var(--bs-white) !important;
}


.testimonial-carousel .owl-dots {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin-right: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
  width: 70px;
  height: 70px;
  border-radius: 40px;
  border: 4px solid var(--bs-secondary);
}

@media (min-width: 900px) {
  .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .testimonial .testimonial-carousel.owl-carousel {
    padding: 0;
  }

  .testimonial .testimonial-carousel .owl-nav .owl-prev {
    margin-top: -250px;
    margin-left: -15px;
  }

  .testimonial .testimonial-carousel .owl-nav .owl-next {
    margin-top: -250px;
    margin-right: -15px;
  }
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  z-index: 1;
}

.contact::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -1%;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 60px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: ContactMoveLeft 50s linear infinite;
  z-index: 1;
}

@keyframes ContactMoveLeft {
  0% {
    left: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    left: 90%;
  }

  75% {
    top: 80%;
  }

  100% {
    left: 0px;
  }
}

.contact::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -1%;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 60px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: ContactMoveRight 50s linear infinite;
  z-index: 1;
}

@keyframes ContactMoveRight {
  0% {
    right: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    right: 90%;
  }

  75% {
    top: 80%;
  }

  100% {
    right: 0px;
  }
}

/*** Contact End ***/


/*** Footer Start ***/
/* .footer {
  background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-dark);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: var(--bs-primary);
} */

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}

/*** copyright end ***/




.scrolled {
  background-color: #0e0d0da1 !important;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  /* optional for nice effect */
  position: fixed;
    top: 0;
    z-index: 100;
    left: 0;
    width: 100%;
}


.ceo_name::before {
  content: "";
  width: 60px;
  height: 2px;
  background-color: var(--bs-primary);
  position: absolute;
  top: 25%;
  left: 0;
}




.logo-img {
  height: 100px;
  object-fit: contain;
}


/* .outer-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgb(255, 255, 255, 0.8);
  background-blend-mode: overlay;
} */

.services-section {
  padding: 2rem 2rem;
  /* background: #e9e8f8; */
  position: relative;
  overflow: hidden;
}

.services-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.text-left {
  flex: 1 1 45%;
  max-width: 600px;
  padding-right: 2rem;
}



.zigzag {
  color: #3a3284;
  font-weight: 400;
  font-size: 1.2rem;
  margin-left: 10px;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c1c3d;
  margin-bottom: 1rem;
}



/* Service cards */


/* Responsive */
@media (max-width: 992px) {
  .services-content {
    flex-direction: column;
    align-items: center;
  }

  .text-left {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .services-section {
    padding: 2rem 1rem;
  }

}

@media (max-width: 600px) {
  .main-heading {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .case-study-section {
    /* background: #7A85C1; */
    padding: 40px 30px !important;
    overflow: hidden;
  }
}

/* Orbit Layout */

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


.team-section {
  background: #e9e8f8;
  padding: 100px 50px;
  position: relative;
}

.team-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.text-side {
  max-width: 40%;
}



.main-heading {
  font-size: 36px;
  color: #1c2b4a;
  font-weight: bold;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.meet-btn {
  background-color: #3a3284;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0px 8px 15px rgba(255, 77, 79, 0.2);
}

.case-study-section {
  /* background: #7A85C1; */
  padding: 80px 60px;
  overflow: hidden;
}

.case-study-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.subheading {
  color: #3a3284;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.case-nav {
  display: flex;
  gap: 20px;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #1c2b4a;
  cursor: pointer;
}

.nav-btn:hover {
  color: #3a3284;
}

.case-right {
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: flex;
  gap: 5px;
}

.slide {
  width: calc(50% - 10px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
}

.slide:nth-child(1) {
  left: 0;
}

.slide:nth-child(2) {
  right: 0;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.image-card {
  position: relative;
  /* width: calc(50% - 10px); */
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-card img {
  width: 100%;
  /* height: auto; */
  display: block;
  transition: transform 0.3s ease;
  height: 250px;
}

.image-card:hover img {
  transform: scale(1.05);
}

/* Footer overlay */
/* .image-footer {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: bottom 0.3s ease;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border: 1px solid black;
} */

/* Arrow inside footer */
.arrow-icon {
  font-size: 20px;
  color: #1c2b4a;
}

/* Hover effect */
/* .image-card:hover .image-footer {
  bottom: 0;
} */


.testimonial-section {
  padding: 100px 60px;
  /* background: #7A85C1; */
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial-left {
  flex: 1;
  max-width: 40%;
}

.title {
  font-size: 36px;
  font-weight: bold;
  color: #191133;
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: left;
}

.testimonial-nav {
  display: flex;
  gap: 15px;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #b8c2d0;
  cursor: pointer;
}

.nav-btn:hover {
  color: #3a3284;
}

.testimonial-right {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.testimonial-stack {
  position: relative;
  height: 300px;
  width: 100%;
  max-width: 600px;
}

.testimonial-card {
  position: absolute;
  background: white;
  padding: 60px 60px 55px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  opacity: 0;
  /* transform: scale(0.9) translateY(130px); */
  transition: all 0.6s ease;
  z-index: 0;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 3;
}

.testimonial-card.next {
  opacity: 0.6;
  transform: scale(0.90) translateY(120px);
  z-index: 2;
}

.testimonial-card.prev {
  opacity: 0.6;
  transform: scale(0.90) translateY(-120px);
  z-index: 2;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  float: left;
  margin-right: 20px;
}

.quote-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

.quote-text h4 {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: bold;
  color: #1c2b4a;
}

.quote-text span {
  font-size: 14px;
  color: #888;
}


/* .footer-section {
  background: #eaf0ff;
  padding: 40px 60px 10px;
  position: relative;
  text-align: center;
} */

/* .footer-section::before {

  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  border-radius: 50% 50% 0 0;
} */

.newsletter .section-label {
  color: #3a3284;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.newsletter h2 {
  font-size: 32px;
  color: #1c2b4a;
  font-weight: 700;
  margin-bottom: 40px;
}

.form-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.form-group input {
  /* padding: 12px 0px ; */
  width: 250px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.submit-btn {
  background: #3a3284;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 18px;
  box-shadow: 0 8px 20px #3a328454;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--bs-dark) !important;
  color: var(--bs-white) !important;
}
/* 
.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
  text-align: left;
} */

/* .footer-links .column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c2b4a;
} */

/* .footer-links .column ul {
  list-style: none;
  padding: 0;
}

.footer-links .column ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
} */

.social-icons i {
  margin-right: 15px;
  font-size: 16px;
  color: #1c2b4a;
  cursor: pointer;
}

/* .social-icons i:hover {
  color: #4f4c9d;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
} */

/* .footer-logo {
  background: #3a3284;
  color: white;
  width: 50px !important;
  height: 40px;
  display: inline-block;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 10px;
} */

/* .footer-bottom p {
  font-size: 13px;
  color: #888;
}

.footer-bottom span {
  color: #3a3284;
  font-weight: 600;
} */

/* .cta-section {
  padding: 80px 20px;
  background-size: contain;
  text-align: center;
  position: relative;
}

.cta-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: #1c2b4a;
  line-height: 1.4;
  margin-bottom: 50px;
}

.cta-content .highlight {
  color: #3a3284;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
} */

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-back-to-top {
  display: inline-block;
  padding: 18px 18px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .4);
  background-color: #3a3284;
  color: white;
}

.btn-dark {
  background-color: #191133;
  color: #fff;
}

.btn-dark:hover {
  background-color: #2e3e60;
}

.btn-red {
  background-color: #3a3284;
  color: #fff;
}

.btn-red:hover {
  background-color: var(--bs-dark);
  color: var(--bs-white);
}


.card-container {
  perspective: 1000px;
}

.card {
  transform-style: preserve-3d;
  /* transition: transform .8s; */
  position: relative;
  padding: 30px;
  /* height: 350px; */
  margin-bottom: 2rem;
  transition: transform 0.8s ease !important;
}

.card:hover {
  transform: rotateY(15deg) !important;
}

.card-back {
  transform: rotateY(180deg) !important;
}

.card:hover .card-back {
  transform: rotateY(0deg) !important;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-in-out forwards !important;
  opacity: 0;
  transform: translateY(20px) !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-delay-1 {
  animation-delay: 0.2s !important;
}

.animate-delay-2 {
  animation-delay: 0.4s !important;
}

.animate-delay-3 {
  animation-delay: 0.6s !important;
}

.border-blue-500 {
  border-color: #4f4c9d !important;
  border-top-width: 4px;
}

/* Image Slider */


.image-card {
  display: block;
  text-align: center;
}

.image-card img {
  width: 100%;
  border-radius: 12px;
}

.image-card.active {
  display: block;
}

.image-footer {
  margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .case-study-section {
    text-align: center;
  }

  .case-nav {
    justify-content: center;
  }

}


@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .testimonial-stack {
    /* overflow: hidden; */
    width: 100%;
  }

  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
  }

  .footer-links {
    justify-content: left;
    gap: 40px;
    margin-top: 40px;
  }
}


/* Digital Marketing Page Style */

.service-detail-section {
  padding-top: 100px;
  padding-bottom: 50px;
}

.service-content h1 {
  color: #191133;
  font-weight: bold;
}

.service-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.sub-services-list {
  list-style: none;
  padding: 0;
}

.sub-services-list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.sub-services-list li::before {
  content: "\f00c";
  /* FontAwesome check icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #7872b4;
}

.service-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


.blog-section {
  padding-top: 100px;
  padding-bottom: 50px;
}

.blog-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h4 {
  font-weight: bold;
  color: #191133;
}

.blog-meta {
  font-size: 0.9rem;
  color: #777;
}

.read-more-btn {
  color: #7872b4;
  text-decoration: none;
  font-weight: bold;
}



pagination {
  display: flex;
  padding-left: 0;
  list-style: none
}

.page-link-pagination {
  position: relative;
  display: block;
  color: #3a3284 !important;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion: reduce) {
  .page-link-pagination {
    transition: none
  }
}

.page-link-pagination:hover {
  z-index: 2;
  color: #3a3284 !important;
  background-color: #e9ecef;
  border-color: #dee2e6
}

.page-link-pagination:focus {
  z-index: 3;
  color: #ffffff !important;
  background-color: #3a3284 !important;
  outline: 0;
  /* box-shadow: 0 0 0 .25rem rgba(247, 71, 128, .25) */
}

.page-item-pagination:not(:first-child) .page-link-pagination {
  margin-left: -1px
}

.page-item-pagination.active .page-link-pagination {
  z-index: 3;
  color: #fff;
  background-color: #3a3284 !important;
  border-color: #3a3284 !important;
}

.page-item-pagination.disabled .page-link {
  color: #3a3284 !important;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6
}

.page-link-pagination {
  padding: .375rem .75rem
}

.page-item-pagination:first-child .page-link-pagination {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px
}

.page-item-pagination:last-child .page-link-pagination {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px
}

.pagination-lg .page-link-pagination {
  padding: .75rem 1.5rem;
  font-size: 1.25rem
}

.pagination-lg .page-item-pagination:first-child .page-link-pagination {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px
}

.pagination-lg .page-item-pagination:last-child .page-link-pagination {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px
}

.pagination-sm .page-link-pagination {
  padding: .25rem .5rem;
  font-size: 0.875rem
}

.pagination-sm .page-item-pagination:first-child .page-link-pagination {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px
}

.pagination-sm .page-item-pagination:last-child .page-link-pagination {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px
}

.seo-packages-section {
  padding-top: 100px;
  padding-bottom: 50px;
}

.table-container {
  max-height: 600px;
  /* Adjust height as needed */
  overflow-y: auto;
  border: 1px solid #e9ecef;
  border-radius: 10px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 15px;
  border: 1px solid #e9ecef;
  white-space: nowrap;
}

.pricing-table th {
  background-color: #f8f9fa;
  font-weight: bold;
  color: #191133;
  text-align: center;
}

.pricing-table td:first-child {
  font-weight: bold;
  color: #495057;
  text-align: left;
}

.package-header {
  background-color: #7872b4;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.package-price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.package-price span {
  font-size: 1rem;
  font-weight: normal;
}

.checkmark {
  color: #28a745;
  font-weight: bold;
}

.crossmark {
  color: #dc3545;
  font-weight: bold;
}

.sticky-col {
  position: sticky;
  left: 0;
  background-color: #fff;
  z-index: 10;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;             /* Remove blue/red glow */
  border-color: transparent;    /* Or use your custom color */
  outline: none;                /* Optional: remove outline */
} 

  .custom-accordion .accordion-button {
    background-color: var(--bs-light); /* Blue background */
    color: #3a3284;              /* White text */
  }

  .custom-accordion .accordion-button:not(.collapsed) {
    background-color: #dddaef; /* Darker blue when open */
    color:  var(--bs-primary);
  }


.cta-container{
  background-image: linear-gradient(to bottom left, #332e7e,#635ca5,#100e1b );
}

.cta-title{
  color:var(--bs-light);
  margin-bottom:0;
}
.cta-text{
  color:var(--bs-light);
  font-weight: 500;
}
.cta-btn{
  background-color:var(--bs-light) !important;
  color:var(--bs-primary) !important;
  font-weight: 600;
  transition: 0.5s;
}

h1{
  text-transform:capitalize !important;
}

.hero-section{
  padding-bottom:2rem;
}


.hero-title{
  margin: 0;
  padding:0;
  text-align: center;
  font-weight: 500;
  font-size:3.5rem;
}

.hero-text{
  margin: 0;
  padding:0;
  text-align:center;
  max-width: 40rem;
  font-size:1rem;
}

.hero-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 60rem;
}


.stats-card {
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
}

.stats-card:hover {
  transform: translateY(-5px);
}


.stats-label {
  font-size: 1.25rem;
  font-weight: 500;
  color: #191133;
}

/* Optional: Icon placeholder */
.stats-icon {
  width: 60px;
  height: 60px;
}

.stats-icon img{
  width:100%;
  height:100%;
}

.stats-container{
  display: flex;
  justify-content: center;
  max-width: 50rem;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 1rem;
}

@media (max-width:1200px)   {
  .hero-title{
    font-size:3rem;
  }
  .hero-container{
    margin-top: 7rem;
    margin-bottom: 2rem;
  }
  .hero-section{
    margin-top: -212px;
  }
}

@media (max-width:991px)   {
  .hero-title{
    font-size:2.5rem;
  }
  .hero-container{
    margin-top: 8rem;
    margin-bottom: 4rem;
  }

}

@media (max-width:768px)   {
  .hero-title{
    font-size:2.5rem;
  }
  .hero-container{
    margin-top: 4rem;
    margin-bottom: 2rem;
  }
  .stats-label {
    font-size: .8rem;
    font-weight: 500;
    color: #191133;
  }
  .stats-container{
    display: flex;
    max-width: 50rem;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: start;
    gap: 1rem;
  }

  .hero-section{
    margin-top: -160px;
  }

}
@media (max-width:540px)   {
  .hero-title{
    font-size:2rem;
  }
  .hero-container{
    margin-top: 3rem;
    margin-bottom: 2rem;
  }

}


/* Optional: change link colors */


/* Hero base */
.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10rem; /* leave enough space for navbar */
  margin-bottom: 4rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Subtle parallax-like shift on scroll */
.hero-scrolled {
  transform: translateY(-30px);
  opacity: 0.95;
}



.button-boxshadow{
  border: 1px solid white; 
  color: #fff; font-size: 20px; 
  box-shadow: 
    rgba(241, 240, 241, 0.527) 0px -23px 25px 0px inset,
    rgba(241, 240, 241, 0.527)  0px -36px 30px 0px inset, 
    rgba(241, 240, 241, 0.527) 0px -79px 40px 0px inset, 
    rgba(241, 240, 241, 0.527)  0px 2px 1px, 
    rgba(241, 240, 241, 0.527)  0px 4px 2px, 
    rgba(241, 240, 241, 0.527)  0px 8px 4px, 
    rgba(241, 240, 241, 0.527)  0px 16px 8px, 
    rgba(241, 240, 241, 0.527)  0px 32px 16px;
 
  color: #fff;
}

.glass-btn {
  width:fit-content;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #e6e1ff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12); /* translucent base */
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(110, 80, 255, 0.25); /* blue glow */
  transition: all 0.3s ease;
}

/* Hover Effect */
.glass-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 6px 25px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(140, 100, 255, 0.35); /* stronger glow */
  transform: translateY(-3px);
  color: #fff;
}

/* Optional: for subtle inner highlight */
.glass-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(145deg, rgba(255,255,255 / 9%), rgba(255,255,255,0.05));
  opacity: 0.6;
  z-index: -1;
}



.subheading {
  font-size: 0.9rem;
  color: var(--bs-white);
  font-weight: 600;
  letter-spacing: 1px;
}

.description {
  color: var(--bs-white);
}


.about-section{
  padding:0;
}
.about-container{
  width:100%;
  height:100%;
  display:flex;
  background-color:var(--bs-bg-dark);
}



.about-img{

  img{
    width: 100%;
    height: 100%;
    object-fit:cover;
  }
}

/* @media (max-width:1100px){
  .about-container{
    flex-direction:column-reverse;
    .about-img{
      max-height: 40rem;
    }
  }
} */
.about-content{
  /* width:100%;
  height:100%; */
  position: relative;

}

.about-text{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 6rem 2rem 10rem 2rem;
}

.about-content-img{
    width: 100%;
    position: absolute;
    z-index: 10;
    bottom: 0;
}

.about-content-img img{
  width:100%;
  height:100%;
}

@media (max-width:767px){
  .about-container{
    flex-direction:column-reverse;
  }
}

.services-section{
  width:100%;
  height:100%;  
}

.services-container{
  width: 100%;
  height:100%;
  display:flex;
  flex-direction:row;
  gap:2rem;
}




.services-content{
  width: 100%;
  height: 100%;
  display:flex;
  justify-content:start;
  align-items:start;
  flex-direction:column;
  padding:6rem 0;
}

.service-cards-section{
  width:100%;
  height:100%;
  padding:6rem 0;
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}


.service-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.301);
  text-align: center;
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
  display:flex;
  justify-content:start;
  align-items:center;
  flex-direction:column;
  gap:1rem;
  border-radius: 5px;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
  /* min-height: 18rem; */
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgb(84 83 87 / 51%);
}

.service-card:hover {
  transform: translateY(-10px);
}


.service-card h4 {
  font-size: 1.5rem;
  color: var(--bs-white);
  font-weight: 600;
  margin-bottom: 0;
}

.service-card-icon{
  width:2rem;
  height:2rem;
}

.service-card-icon i{
  font-size:2rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--bs-white);
  margin-bottom:0;
}



@media (max-width:1000px){
  .services-container{
    flex-direction:column;
  }
  .service-cards-section{
    padding:2rem 0 4rem 0;
  }

}
@media (max-width:540px){
  .services-container{
    flex-direction:column;
  }
  .service-cards-section{
    grid-template-columns: repeat(1,1fr);
  }

}


.services-WCU-container {
  position: relative;
  background: 
    linear-gradient(rgba(11, 1, 28, 0.90), rgba(11, 1, 28, 0.90)),
    url("../img/services-WCU-bg2.png") center/cover no-repeat fixed;
  color: #fff;
  overflow: hidden;

}

/* Ensure text content sits above background */
.services-section,
.WCU-card-container,
.WCU-card {
  position: relative;
  z-index: 2;
}

/* Optional: parallax scroll animation (smooth illusion) */
@media (min-width: 992px) {
  .services-WCU-container {
    background-attachment: fixed;
  }
}

/* Responsive fallback for mobile (disable fixed for performance) */
@media (max-width: 991px) {
  .services-WCU-container {
    background-attachment: scroll;
  }
}


.WCU-card {
  transform-style: preserve-3d;
  /* transition: transform .8s; */
  position: relative;
  /* height: 350px; */
  margin-bottom: 2rem;
  transition: transform 0.8s ease !important;
  border-radius: 5px;
}

.WCU-card:hover {
  transform: rotateY(15deg) !important;
}

.WCU-card-container{
  width:100%;
  height:100%;
  padding:2rem 2rem 6rem 2rem;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
footer {
    background: 
        linear-gradient(180deg, #060010 0%, #12042c9d 60%, #2E1C6B 100%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: auto;
    position: relative;
}

/* Layout */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width:1000px){
  .footer-content{
    grid-template-columns: repeat(3,1fr)
  }
}
@media (max-width:764px){
  .footer-content{
    grid-template-columns: repeat(2,1fr)
  }
}
@media (max-width:580px){
  .footer-content{
    grid-template-columns: repeat(1,1fr)
  }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-right: 15px;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFFFFF, #5A50F2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Headings */
.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #FFFFFF;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #483BDB;
    border-radius: 2px;
}

/* Text & Links */
.footer-column p,
.footer-links a,
.contact-info li,
.footer-bottom p,
.footer-bottom-links a {
    color: #A9ADC0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #5A50F2;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding-left: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 15px;
    margin-top: 3px;
    color: #483BDB;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
    background: #483BDB;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #5A50F2;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.social-links a:hover {
    background: #483BDB;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: #5A50F2;
}

/* Shape */
.footer-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

.footer-shape .shape-fill {
    fill: #C8CBDA;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }
  
  .newsletter-form {
      flex-direction: column;
  }
  
  .newsletter-form input {
      border-radius: 4px;
      margin-bottom: 10px;
  }
  
  .newsletter-form button {
      border-radius: 4px;
      padding: 12px;
  }
}

@media (min-width:1400px){
  .footer-container{
    max-width:100%;
    padding:0 3rem;
  }
}

.footer-column h4{
  color:var(--bs-white);
}
.cta-section {
  position: relative;
  /* background: linear-gradient(
    180deg,
    #0B011C 0%,
    #1a0938 40%,
    #2C1C6E 70%,
    #3F2A89 100%
  ); */
  color: #fff;
  text-align: center;
  padding: 140px 20px;
  overflow: hidden;
}

/* Headline */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #EAE8FF;
  margin-bottom: 40px;
}

.cta-content .highlight {
  color: #5A50F2;
}

.cta-content .highlight-alt {
  color: #9C94FF;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Primary button */
.btn-primary {
  background: linear-gradient(45deg, #5A50F2, #483BDB);
  color: #fff;
  box-shadow: 0 4px 20px rgba(90,80,242,0.4);
}
.btn-primary:hover {
  background: linear-gradient(45deg, #6C63FF, #5A50F2);
  transform: translateY(-3px);
  color: var(--bs-white);
}

/* Outline button */
.btn-outline {
  border: 2px solid #5A50F2;
  color: #EAE8FF;
  background: transparent;
}
.btn-outline:hover {
  background: #5A50F2;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h1 {
    font-size: 2.2rem;
  }
  .cta-section {
    padding: 100px 20px;
  }
}


.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subheading {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: #8c82ff;
  margin-bottom: 10px;
}

.section-header .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.blog-section {
  color: #fff;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .subheading {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: #8c82ff;
  margin-bottom: 10px;
}

.section-header .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.blog-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease-in-out;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding:1rem 0;
}
.blog-slider::-webkit-scrollbar {
  display: none;
}

.blog-card {
  flex: 0 0 350px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  padding: 20px 20px 0;
}

.blog-image {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 1, 28, 0) 0%, rgba(11, 1, 28, 0.8) 100%);
}

.blog-content {
  padding: 20px;
  color: #c3c6d1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.read-more {
  color: #8c82ff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(4px);
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  border-radius: 50%;
}

.slider-btn:hover {
  background: #8c82ff;
  box-shadow: 0 0 15px rgba(140, 130, 255, 0.5);
}

.slider-btn.left {
  left: 20px;
}

.slider-btn.right {
  right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card {
    flex: 0 0 280px;
  }
  .blog-image {
    height: 160px;
  }
}

.blog-cta-container{
  background: linear-gradient(180deg, #05000D 0%, #0B011C 20%, #14072D 45%, #1E0E45 70%, #2C1C6E 100%);
  background-attachment: fixed;
}

/* ===== WIZARD PROCESS STYLES ===== */
.process-wizard {
  position: relative;
  overflow: hidden;
}

.wizard-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.wizard-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(160, 138, 255, 0.1), rgba(140, 130, 255, 0.05));
  animation: float 6s ease-in-out infinite;
}

.wizard-bg-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.wizard-bg-shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -3%;
  animation-delay: 2s;
}

.wizard-bg-shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

.wizard-bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wizard-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(160, 138, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}

.wizard-particle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.wizard-particle-2 {
  top: 70%;
  left: 80%;
  animation-delay: 3s;
}

.wizard-particle-3 {
  top: 40%;
  left: 60%;
  animation-delay: 6s;
}

.wizard-particle-4 {
  top: 80%;
  left: 20%;
  animation-delay: 9s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
  50% { transform: translateY(-30px) translateX(20px); opacity: 1; }
}

.wizard-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Progress Bar */
.wizard-progress {
  margin-bottom: 3rem;
}

.progress-bar-container {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #a08aff, #8c82ff, #6b5fff);
  border-radius: 3px;
  transition: width 0.5s ease;
  box-shadow: 0 0 20px rgba(160, 138, 255, 0.5);
}

.progress-steps {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.progress-step.completed .step-indicator {
  background: linear-gradient(135deg, #a08aff, #8c82ff);
  box-shadow: 0 0 20px rgba(160, 138, 255, 0.6);
}

.progress-step.completed .step-label {
  color: #a08aff;
  font-weight: 600;
}

.step-indicator {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

/* Wizard Content */
.wizard-content {
  position: relative;
  min-height: 500px;
}

.wizard-step {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.wizard-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.step-header {
  text-align: center;
  margin-bottom: 3rem;
}

.step-number-badge {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a08aff, #8c82ff);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(160, 138, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.step-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}

.step-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.step-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-left {
  padding-right: 2rem;
}

.step-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.step-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.highlight-item i {
  color: #a08aff;
  font-size: 1.1rem;
}

.highlight-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.content-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.visual-icon-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(160, 138, 255, 0.2), rgba(140, 130, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a08aff;
  font-size: 3rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(160, 138, 255, 0.3);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.visual-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #a08aff;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Wizard Navigation */
.wizard-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(160, 138, 255, 0.2), rgba(140, 130, 255, 0.1));
  border: 1px solid rgba(160, 138, 255, 0.3);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.wizard-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #a08aff, #8c82ff);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(160, 138, 255, 0.4);
}

.wizard-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wizard-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #a08aff;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(160, 138, 255, 0.6);
}

/* Wizard Summary */
.wizard-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.metric-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(160, 138, 255, 0.2), rgba(140, 130, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a08aff;
  font-size: 1.5rem;
  border: 1px solid rgba(160, 138, 255, 0.3);
}

.metric-content {
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .step-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-left {
    padding-right: 0;
    text-align: center;
  }

  .step-highlights {
    grid-template-columns: 1fr;
  }

  .wizard-summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .step-title {
    font-size: 2rem;
  }

  .visual-stats {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .progress-steps {
    top: -80px;
  }

  .step-indicator {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-label {
    font-size: 0.75rem;
  }

  .step-number-badge {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step-title {
    font-size: 1.8rem;
  }

  .wizard-navigation {
    flex-direction: column;
    gap: 1.5rem;
  }

  .wizard-dots {
    order: -1;
  }

  .wizard-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .summary-metric {
    justify-content: center;
  }

  .visual-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ===== PROCESS FLOW STYLES ===== */
.process-flow {
  position: relative;
  overflow: hidden;
}

.flow-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.flow-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(160, 138, 255, 0.08), rgba(140, 130, 255, 0.04));
  animation: flowFloat 8s ease-in-out infinite;
}

.flow-bg-shape-1 {
  width: 250px;
  height: 250px;
  top: 15%;
  left: -8%;
  animation-delay: 0s;
}

.flow-bg-shape-2 {
  width: 180px;
  height: 180px;
  top: 70%;
  right: -6%;
  animation-delay: 3s;
}

.flow-bg-shape-3 {
  width: 120px;
  height: 120px;
  bottom: 25%;
  left: 45%;
  animation-delay: 6s;
}

.flow-bg-shape-4 {
  width: 90px;
  height: 90px;
  top: 45%;
  right: 15%;
  animation-delay: 9s;
}

@keyframes flowFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-25px) rotate(180deg); opacity: 1; }
}

/* Progress Header */
.process-progress {
  position: relative;
  z-index: 3;
  margin-bottom: 4rem;
}

.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 2rem 0;
  /* background: rgba(255, 255, 255, 0.05); */
  border-radius: 20px;
  /* backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1); */
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 1rem;
  border-radius: 12px;
  min-width: 80px;
}

.progress-step:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.progress-step.active {
  background: linear-gradient(135deg, rgba(160, 138, 255, 0.2), rgba(140, 130, 255, 0.1));
  border: 1px solid rgba(160, 138, 255, 0.3);
  box-shadow: 0 8px 25px rgba(160, 138, 255, 0.2);
}

.progress-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.progress-step.active .progress-dot {
  background: linear-gradient(135deg, #a08aff, #8c82ff);
  border-color: #a08aff;
  box-shadow: 0 0 15px rgba(160, 138, 255, 0.6);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.progress-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.progress-step.active .progress-label {
  color: #a08aff;
  font-weight: 600;
}

.progress-connector {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.progress-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #a08aff, transparent);
  animation: connectorFlow 3s ease-in-out infinite;
}

@keyframes connectorFlow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Process Cards Container */
.process-cards-container {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 2rem;
  transition: height 0.5s ease;
  overflow: hidden;
}

.process-card-wrapper {
  position: relative;
  width: 100%;
  display: none;
}

.process-card-wrapper.active {
  display: block;
}

.process-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(160, 138, 255, 0.1), rgba(140, 130, 255, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.process-card:hover::before,
.process-card.active::before {
  opacity: 1;
}

.process-card.active {
  border-color: rgba(160, 138, 255, 0.3);
  box-shadow: 0 20px 40px rgba(160, 138, 255, 0.15);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(160, 138, 255, 0.2);
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card-step-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(160, 138, 255, 0.2), rgba(140, 130, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a08aff;
  font-size: 1.5rem;
  font-weight: bold;
  border: 2px solid rgba(160, 138, 255, 0.3);
  transition: all 0.3s ease;
}

.process-card.active .card-step-badge {
  background: linear-gradient(135deg, #a08aff, #8c82ff);
  color: white;
  box-shadow: 0 0 20px rgba(160, 138, 255, 0.5);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.process-card.active .card-icon {
  background: linear-gradient(135deg, rgba(160, 138, 255, 0.3), rgba(140, 130, 255, 0.2));
  color: #a08aff;
  box-shadow: 0 5px 15px rgba(160, 138, 255, 0.3);
}

/* Card Content */
.card-content {
  margin-bottom: 2rem;
}

.card-title {
    color: white;
    font-size: 2.4rem;
    font-weight: bold;
}

.card-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-chip {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.process-card.active .feature-chip {
  background: rgba(160, 138, 255, 0.2);
  border-color: rgba(160, 138, 255, 0.4);
  color: white;
}

/* Card Arrows */
.card-arrow {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.process-card.active .card-arrow {
  background: linear-gradient(135deg, #a08aff, #8c82ff);
  color: white;
  opacity: 1;
  box-shadow: 0 5px 15px rgba(160, 138, 255, 0.4);
}

.card-checkmark {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
  animation: checkmarkPulse 2s ease-in-out infinite;
}

@keyframes checkmarkPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Process Stats */
.process-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(160, 138, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #a08aff;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-card.active {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
  /* Single card layout - no grid changes needed */
}

@media (max-width: 992px) {
  .progress-header {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem;
  }

  .progress-step {
    min-width: 60px;
  }

  .progress-connector {
    width: 30px;
  }

  .progress-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .process-card {
    padding: 2rem;
  }

  .card-header {
    gap: 1rem;
  }

  .card-step-badge {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .progress-header {
    padding: 1rem;
  }

  .progress-step {
    padding: 0.5rem;
  }

  .process-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .process-stats {
    grid-template-columns: 1fr;
  }

  .progress-header {
    gap: 0.25rem;
  }

  .progress-step {
    min-width: 50px;
  }

  .progress-connector {
    width: 20px;
  }
}
