@charset "utf-8";
/* Smooth scroll effect */
html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
}
body {
    font-family: 'Roboto', sans-serif;
  }
.dark-bg{
    background-color: #6c4ef3;
    color: white !important;
}
/* CSS Document */
.fw-extrabold {
  font-weight: 800
}
.btn-demo {
    color: #fff;
    border-radius: 20px;
    background-color: #ffc107;
    border: 1px solid #ffffff;
}
.rounded {
    border-radius: var(--bs-border-radius) !important;
    box-shadow: 0px 0px 70px 40px #ffffff75;
}
.btn-demo:hover {
    border: 1px solid #ffffff6b;
    box-shadow: 5px 5px 5px #ffffff6b;
}
.section-title {
  font-weight: 800;
  letter-spacing: -0.2px
}
.word-rotate {
  display: flex;
  position: relative;
  height: 1.2em; /* adjust to match your h1 line-height */
  overflow: visible;
  vertical-align: bottom;
}
.word-rotate span {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: rotateWords 8s linear infinite;
}
.word-rotate span:nth-child(1) {
  animation-delay: 0s;
}
.word-rotate span:nth-child(2) {
  animation-delay: 2s;
}
.word-rotate span:nth-child(3) {
  animation-delay: 4s;
}
.word-rotate span:nth-child(4) {
  animation-delay: 6s;
}
@keyframes rotateWords {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  35% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0;
  }
}
.top-img {
  margin-top: 0 !important;
  padding-top: 0 !important;
  height: 60px; /* adjust as needed */
  object-fit: contain;
}
.navbar-nav {
  margin: 0 auto; /* centers the menu */
}
.nav-link {
  color: #fff;
	padding: 5px 25px !important;
}
.navbar {
  background-color: rgb(108 78 243) !important;
  color: #fff;
}
.section-title {
  font-weight: 800;
  letter-spacing: -0.2px
}
.accent-line {
  height: 6px;
  width: 110px;
  background: rgb(108 78 243);
  border-radius: 3px
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-fluid-s {
  max-width: 50%;
  height: auto;
}
.feature-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .08));
} /* promo ribbon */
.promo-ribbon {
  position: fixed;
  top: 8px;
  right: 14px;
  z-index: 1040;
  background: var(--primary-2);
  color: #fff;
  padding: .5rem .75rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(92, 83, 255, .25);
  text-decoration: none;
}
.promo-ribbon:hover {
  opacity: .95;
  color: #fff
}
/**/
.carousel-control-next {
  margin: 0 3em;
}
i.fa-arrow-right, i.fa-arrow-left {
  background: none;
  border: 2px solid #6c4ef3;
  color: #6c4ef3;
  padding: 10px;
  border-radius: 100%;
  transition: background .6s ease;
}
i.fa-arrow-right:hover, i.fa-arrow-left:hover {
  background: #6c4ef3;
  color: white;
}
/* Indicators */
.carousel-indicators {
  justify-content: flex-start;
  transform: translate(-40px, 50px);
	    margin-left: 6%;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 2px solid #6c4ef3;
}
.carousel-indicators .active {
  opacity: 1;
  background-color: #6c4ef3;
}
/* Control buttons */
.control-btn {
    position: absolute;
        bottom: 0px;
    right: 1em;
}
.carousel-controls-bottom {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.carousel-control-prev,
.carousel-control-next {
  position: relative; /* not static, allow flex layout */
  width: 40px;
  height: 40px;
}
.testimonial-text {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 20px;
}
.carousel-landmark {
  grid-column: span 12;
}
@media screen and (max-width: 576px) {
  .testimonial-text {
    margin-top: 50px;
    row-gap: 50px;
  }
  .wow {
    grid-column: span 5;
  }
  .carousel-landmark {
    grid-column: span 5;
  }
}
/**/
.counter {
  font-size: 4rem;
  font-weight: 800;
  color: rgb(108 78 243);
  min-height: 2.5rem;
  display: inline-block;
  position: relative;
}
/* Paid Users 0 → 10M+ */
.counter-users::before {
  content: "0";
  animation: users 3s steps(4, end) forwards;
}
@keyframes users {
  0% {
    content: "0";
  }
  25% {
    content: "1M+";
  }
  50% {
    content: "5M+";
  }
  75% {
    content: "8M+";
  }
  100% {
    content: "10M+";
  }
}
/* Customers 0 → 10K+ */
.counter-customers::before {
  content: "0";
  animation: customers 3s steps(4, end) forwards;
}
@keyframes customers {
  0% {
    content: "0";
  }
  25% {
    content: "2K+";
  }
  50% {
    content: "5K+";
  }
  75% {
    content: "8K+";
  }
  100% {
    content: "10K+";
  }
}
/* Countries 0 → 10+ */
.counter-countries::before {
  content: "0";
  animation: countries 3s steps(3, end) forwards;
}
@keyframes countries {
  0% {
    content: "0";
  }
  33% {
    content: "5+";
  }
  66% {
    content: "8+";
  }
  100% {
    content: "10+";
  }
}
/**/
.footer-gradient {
  background: rgb(108 78 243) !important;
}
.footer-link {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
}
.footer-link:hover {
  color: #fff
}
/* Chat floating action button */
.chat-fab {
  position: fixed;
  right: 23px;
  bottom: 80px;
  z-index: 1030;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  color: #fff;
  background: #ffcd2e;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.chat-fab i {
  font-size: 1.25rem
} /* cards */
.card {
  border-radius: 1rem
} /* responsive tweaks */
@media (max-width: 991.98px) {
  .promo-ribbon {
    display: none
  }
}
/* Floating Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid red;
  color: red;
}
.scroll-top:hover {
  border: 2px solid red;
  color: white;
  background-color: red;
}
.navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* Reset default Bootstrap control position */
.carousel-control-prev,
.carousel-control-next {
  position: static; /* remove absolute positioning */
  width: auto;
  margin: 0 0.25rem;
}

/* New container for bottom-right placement */
.carousel-controls-bottom {
  position: absolute;
  bottom: 0rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}
/* Change carousel arrow colors to #6c4ef3 */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
  filter: invert(37%) sepia(62%) saturate(4089%) hue-rotate(236deg) brightness(93%) contrast(95%);
}
/* Gallery hover */
.gallery-img {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Lightbox fullscreen */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
  z-index: 1050;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}
.lightbox:target {
  display: flex;
  animation: fadeIn 0.4s ease;
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.lightbox .close:hover {
  color: #6c4ef3;
}

/* Carousel controls bottom-right */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
