:root {
  --font-title: "Roboto", serif;
  --font-text: "Poppins", serif;
  --primary-color: #280a47;
  --secondary-color: #2fa5f6;
  --text-color: #555555;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-text);
}
a {
  display: inline-block;
  text-decoration: none;
}

.page-header {
  height: 96px;
}
.navbar {
  box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-brand {
  width: 80px;
  padding: 0;
}
.navbar .navbar-brand img {
  width: 100%;
}
.navbar .navbar-nav {
  column-gap: 35px;
}
.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 600;
}
.nav-btn {
  margin-left: 40px;
}
.nav-btn button {
  background: linear-gradient(90deg, #2fa5f6, #a215fe);
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

/* hero section */
.hero-section {
  padding: 30px 0;
  background: linear-gradient(90deg, #c602ff 60%, #6359ff);
  position: relative;
  overflow: hidden;
}
.hero-content h1 {
  font-size: 64px;
  font-family: var(--font-title);
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.hero-content .hero-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-btns .hero-btn button {
  border-radius: 8px;
  color: #fff;
  padding: 10px 20px;
}
.hero-btns .hero-btn button p {
  margin-bottom: 0;
  font-size: 12px;
}
.hero-btns .counter-btn button {
  border: 1px solid #280a47;
  background: #280a47;
}
.hero-btns .counter-btn button span {
  font-weight: 600;
}

.hero-btns .app-btn button {
  border: none;
  background-color: #000;
  display: flex;
  align-items: center;
}
.hero-btns .app-btn button .app-btn-icon {
  margin-right: 12px;
}
.hero-btns .app-btn button .app-btn-icon i {
  font-size: 24px;
}
.hero-btns .app-btn button .android-icon i {
  color: #b5d119;
}
.hero-btns .app-btn button .app-btn-text {
  text-align: left;
}
.hero-btns .app-btn button .app-btn-text span {
  font-weight: 600;
}
.hero-img {
  max-width: 375px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
}

.hero-section .app-banner-shape-1 {
  position: absolute;
  bottom: 150px;
  right: 50%;
  filter: invert(1) brightness(50);
  transform: translateX(-50%);
  animation: movebounce 5s linear infinite;
}
.hero-section .app-banner-shape-2 {
  position: absolute;
  top: 50px;
  right: 120px;
  filter: invert(1) brightness(50);
  animation: rotateme 5s linear infinite;
}
.hero-section .app-banner-shape-3 {
  position: absolute;
  bottom: 180px;
  left: 60px;
  filter: invert(1) brightness(50);
  animation: movebounce 5s linear infinite;
}

@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes rotateme {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* features section */
.features {
  padding: 100px 0;
}
.features-heading {
  text-align: center;
  margin-bottom: 40px;
}
.features-heading h5 {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.sections-heading {
  font-size: 40px;
  font-weight: 700;
  font-family: var(--font-title);
}

.features-slider .slick-slide {
  padding: 0 12px;
}
.slick-dots li {
  margin: 0 1px;
}
.slick-dots li button:before {
  font-size: 13px;
  color: #ccc;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  color: var(--secondary-color);
}

.features-col {
  position: relative;
  z-index: 1;
  height: 90%;
  transition: ease 0.5s;
}
.features-content {
  height: 100%;
  min-height: 356px;
  text-align: center;
  background-color: #ffffff;
  padding: 30px 20px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin: 20px 20px 30px 20px;
  position: relative;
  z-index: 2;
  border-radius: 10px;
}
.features-col::before {
  content: "";
  position: absolute;
  background-color: #f5f3f6;
  width: 100%;
  height: 70%;
  z-index: -1;
  top: -20px;
  left: 0;
  border-radius: 10px;
}
.features-col:hover {
  transform: translateY(-10px);
}

.feature-icon {
  display: inline-block;
  margin-bottom: 15px;
}
.feature-icon i {
  font-size: 34px;
  color: var(--secondary-color);
  line-height: 1;
}
.feature-icon img {
  width: 34px;
  height: 34px;
}
.feature-heading {
  font-size: 22px;
  font-family: var(--font-title);
  margin-bottom: 15px;
  font-weight: 600;
}
.feature-text {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.8;
}

/* explore section */
.explore-section {
  padding: 70px 0;
  background-color: #f0f0f0;
}

.explore-img {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 20px;
}
.explore-img img {
  width: 100%;
  border-radius: 20px;
}

.slider-img {
  height: 550px;
  padding: 0 50px;
  position: relative;
}
.slider-img img {
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.images-slider .slick-prev,
.images-slider .slick-next {
  /* background: #6359FF; */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 2;
}
.images-slider .slick-prev {
  left: 15px;
}
.images-slider .slick-next {
  right: 15px;
}
.images-slider .slick-prev:before,
.images-slider .slick-next:before {
  font-family: "bootstrap-icons";
  color: #93a2af;
  font-size: 50px;
}
.images-slider .slick-prev:before {
  content: "\F284";
}
.images-slider .slick-next:before {
  content: "\F285";
}

.explore-content {
  padding-left: 20px;
}
.explore-content-list {
  margin-bottom: 35px;
}
.explore-content-list ul {
  padding-left: 0;
  margin-bottom: 0;
}
.explore-content-list ul li {
  list-style-type: none;
  position: relative;
  padding-left: 70px;
  margin-bottom: 25px;
}
.explore-content-list ul li .explore-icon {
  color: #ffffff;
  background-color: var(--secondary-color);
  text-align: center;
  height: 45px;
  width: 45px;
  line-height: 48px;
  font-size: 20px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.explore-content-list ul li h3 {
  font-size: 22px;
  font-family: var(--font-title);
  margin-bottom: 10px;
  font-weight: 700;
}
.explore-content-list ul li p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.8;
}

/* revenue generate */
.revenue-generate {
  padding: 100px 0;
}
.revenue-title {
  margin-bottom: 40px;
  text-align: center;
}

.revenue-content {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  height: 100%;
}
.revenue-heading {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.revenue-icon {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background-color: #efedf0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.revenue-icon i {
  font-size: 30px;
  color: var(--secondary-color);
}
.revenue-heading h3 {
  font-size: 20px;
  font-family: var(--font-title);
  font-weight: 700;
  margin-bottom: 0;
}
.revenue-content p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 0;
}

/* use-cases-section */
.use-cases-section {
  padding: 70px 0;
}
.use-cases-content .use-cases-title {
  margin-bottom: 25px;
}
.use-cases-content .use-cases-text {
  margin-bottom: 30px;
}
.use-cases-content .use-cases-text h5 {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
}
.use-cases-content .use-cases-text p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 0;
}

.use-cases-images {
  display: flex;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.use-cases-images .use-cases-img1 {
  width: calc(52% - 15px);
  display: flex;
  align-items: flex-start;
}
.use-cases-images .use-cases-img1 img {
  height: 70%;
}
.use-cases-images .use-cases-img2 {
  width: calc(48% - 15px);
  display: flex;
  align-items: flex-end;
}
.use-cases-images .use-cases-img2 img {
  height: 60%;
}
.use-cases-images .use-cases-img img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.use-cases-images .design-shape {
  position: absolute;
  left: 80px;
  bottom: 0;
  animation: movebounce2 5s linear infinite;
}

@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0px);
  }
}

/* services section */
.services-section {
  padding: 70px 0;
  background-color: #f0f0f0;
  overflow: hidden;
}
.services-img-container {
  position: relative;
}
.services-img {
  width: 50%;
  margin: 0 auto;
  position: relative;
}
.services-img img:first-of-type {
  width: 100%;
  border-radius: 20px;
  z-index: 2;
  position: relative;
}
.animated-text {
  background-color: #fffc;
  display: inline-block;
  padding: 10px;
  border-radius: 10px;
  position: absolute;
  z-index: 3;
  animation: zoomInOut 2s ease-in-out infinite;
}
.animated-text p {
  margin-bottom: 0;
}
.animated-text.top-right {
  top: 30px;
  right: -20%;
}
.animated-text.top-left {
  top: 90px;
  left: -20%;
}
.animated-text.bottom-right {
  bottom: 150px;
  right: -20%;
}
.animated-text.bottom-left {
  bottom: 30px;
  left: -20%;
}

@keyframes zoomInOut {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0);
  }
}

.circle-design {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #280a47;
  position: absolute;
  z-index: 1;
}
.circle-design.top-right {
  right: -30%;
  top: -70px;
}
.circle-design.bottom-left {
  left: -30%;
  bottom: -100px;
}

.services-img .service-shape-1 {
  position: absolute;
  bottom: 150px;
  right: -90px;
  animation: movebounce 5s linear infinite;
}
.services-img .service-shape-2 {
  position: absolute;
  bottom: 300px;
  right: -90px;
  animation: movebounce2 6s linear infinite;
}
.services-img .service-shape-3 {
  position: absolute;
  bottom: 450px;
  right: -90px;
  animation: movebounce 7s linear infinite;
}
.services-img .service-shape-4 {
  position: absolute;
  bottom: 150px;
  left: -120px;
  animation: rotateme 9s linear infinite;
}
.services-img .service-shape-5 {
  position: absolute;
  top: 80px;
  left: -120px;
  animation: movebounce2 6s linear infinite;
}

.services-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.services-content h2 {
  margin-bottom: 20px;
}
.services-content p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
}
.services-design-img {
  display: flex;
  gap: 10px;
}
.services-design-img .service-design {
  width: 80px;
  height: 80px;
}
.services-design-img .service-design img {
  width: 100%;
  object-fit: cover;
}

.services-section.services-section2 {
  background-color: #b6cdf2;
}

/* footer */
.page-footer {
  padding: 70px 0;
  background-color: #12133d;
}
.footer-col-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 40px;
}
.footer-logo img {
  width: 100%;
}
.footer-text {
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  font-size: 14px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links .social-icon i {
  font-size: 28px;
  color: var(--secondary-color);
}

.footer-heading {
  font-size: 24px;
  font-family: var(--font-title);
  color: #fff;
  text-align: center;
  margin: 24px 0 65px;
}
.app-download-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.app-download-btns a {
  display: block;
}
.app-download-btns .footer-btn {
  background: linear-gradient(90deg, #2fa5f6, #a215fe);
  border: none;
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-btn .footer-btn-icon i {
  font-size: 24px;
}
.footer-btn .footer-btn-text {
  text-align: left;
  line-height: 1.3;
}
.footer-btn .footer-btn-text p {
  font-size: 12px;
  margin-bottom: 0;
}
.footer-btn .footer-btn-text span {
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #fff;
}
.footer-bottom p {
  margin-bottom: 0;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-size: 13px;
}
.footer-bottom p a {
  font-weight: 600;
  color: #fff;
}

/* responsive */
@media screen and (max-width: 1200px) {
  .hero-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .hero-content .hero-text {
    margin-bottom: 30px;
  }
  .hero-img {
    max-width: 300px;
  }
}

@media screen and (max-width: 992px) and (min-width: 768px) {
  .images-slider .slick-prev {
    left: -10px;
  }
  .images-slider .slick-next {
    right: -10px;
  }
  .images-slider .slick-prev:before,
  .images-slider .slick-next:before {
    font-size: 40px;
  }
}

@media screen and (max-width: 480px) {
  .nav-btn {
    margin-left: 0;
    margin-top: 20px;
  }
  .hero-content h1 {
    font-size: 30px;
  }
  .hero-content .hero-text {
    font-size: 14px;
  }
  .hero-btns .hero-btn button {
    padding: 7px 15px;
  }
  .hero-btns .app-btn button .app-btn-text span {
    font-size: 13px;
  }
  .hero-section .app-banner-shape-3 {
    bottom: 120px;
    left: 40px;
  }
  .hero-section .app-banner-shape-1 {
    bottom: 40%;
    right: 7%;
  }

  .features {
    padding: 50px 0 20px;
  }
  .features-heading {
    margin-bottom: 30px;
  }
  .features-heading h5 {
    font-size: 15px;
  }
  .sections-heading {
    font-size: 30px;
  }
  .features-content {
    min-height: 270px;
    padding: 20px;
  }
  .feature-heading {
    font-size: 20px;
  }
  .feature-text {
    font-size: 14px;
  }

  .explore-section {
    padding: 50px 0;
  }
  .explore-img {
    padding-right: 0;
  }

  .images-slider .slick-prev {
    left: -10px;
  }
  .images-slider .slick-next {
    right: -10px;
  }
  .images-slider .slick-prev:before,
  .images-slider .slick-next:before {
    font-size: 40px;
  }

  .explore-content {
    padding-left: 0;
  }
  .explore-content-list ul li {
    padding-left: 60px;
  }
  .explore-content-list ul li h3 {
    font-size: 20px;
  }
  .explore-content-list ul li p {
    font-size: 14px;
  }

  .revenue-generate {
    padding: 50px 0 20px;
  }
  .revenue-content {
    padding: 25px;
  }
  .revenue-content p {
    font-size: 14px;
  }

  .use-cases-section {
    padding: 50px 0;
  }
  .use-cases-content .use-cases-title {
    margin-bottom: 20px;
  }
  .use-cases-content .use-cases-text p {
    font-size: 14px;
  }

  .services-section {
    padding: 50px 0;
  }
  .services-img {
    width: 60%;
  }
  .services-content p {
    font-size: 14px;
  }
  .circle-design {
    width: 150px;
    height: 150px;
  }
  .circle-design.top-right {
    top: -40px;
  }
  .services-img .service-shape-1 {
    right: -60px;
    bottom: 20%;
  }
  .services-img .service-shape-2 {
    right: -50px;
    bottom: 47%;
  }
  .services-img .service-shape-3 {
    right: -50px;
    bottom: 80%;
  }
  .services-img .service-shape-4 {
    left: -50px;
    bottom: 100px;
  }
  .services-img .service-shape-5 {
    left: -50px;
  }

  .page-footer {
    padding: 50px 0;
  }
  .footer-logo {
    margin-bottom: 30px;
  }
  .footer-heading {
    margin: 20px 0 30px;
  }
  .app-download-btns {
    gap: 20px;
  }
}
