@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  max-width: 1920px;
  margin: auto;
  overflow-x: hidden;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: none; /* hidden initially */
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: 0.3s;
}

#backToTop:hover {
  background: #6610f2;
}

img.logo {
  max-width: 22rem;
}

/* ================= COMMON ================= */
.section-heading h2 {
  font-size: 3rem;
  font-weight: 600;
}
.section-heading p {
  font-size: 1.5rem;
  color: #666;
}

section {
  padding: 5rem 2rem;
}

.btn-gradient {
  background: linear-gradient(90deg, #6a5cff, #ff4ecd);
  color: #fff;
  border: none;
  border-radius: 5rem;
  padding: 1rem 2.5rem;
  font-size: 1.4rem;
}

.btn-outline-custom {
  border: 2px solid #6a5cff;
  color: #6a5cff;
  border-radius: 5rem;
  font-size: 1.4rem;
}
.btn-outline-custom:hover {
  background: #6a5cff;
  color: #fff;
}

/* ================= HEADER ================= */
.navbar {
  background: #fff;
  padding: 1.5rem 1rem;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.4s ease;
  box-shadow: none;
}
.navbar.scrolled {
  background: #fff;
  padding: 1.5rem 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
}
.navbar-brand {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  transition: all 0.4s ease;
}
.navbar .navbar-toggler {
  font-size: 1.5rem;
  color: #555;
  outline: 0;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-nav {
  align-items: center;
  line-height: normal;
}
.navbar .nav-item.cta {
  margin-left: 1.5rem;
}
.navbar .nav-link {
  font-size: 1.5rem;
  margin: 0 1rem;
  line-height: normal;
  color: #555;
  font-weight: 500;
  transition: 0.3s;
  padding: 0;
  min-height: 6rem;
  display: flex;
  align-items: center;
}
.navbar .nav-link.active {
  color: #6a5cff;
  font-weight: 600;
}
.navbar .nav-link:hover {
  color: #6a5cff;
}
.navbar .btn-primary-custom {
  background: linear-gradient(90deg, #6a5cff, #ff4ecd);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
  border-radius: 5rem;
  color: #fff;
  transition: 0.3s;
}
.navbar .btn-primary-custom:hover {
  opacity: 0.9;
}
.navbar .dropdown-menu {
  border: none;
  border-radius: 12px;
  padding: 1rem 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-top: -0.5rem;
  min-width: 22rem;
  animation: fadeInUp 0.3s ease;
}
.navbar .dropdown-item {
  font-size: 1.4rem;
  padding: 0.8rem 1.5rem;
  color: #444;
  transition: 0.3s;
}
.navbar .dropdown-item:hover {
  background: linear-gradient(90deg, #6a5cff, #ff4ecd);
  color: #fff;
  padding-left: 2rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
}
/* ================= ABOUT ================= */
.about-creative {
  background: #f8f9ff;
}
.about-creative .about-top {
  max-width: 70rem;
  margin: auto;
}
.about-creative .about-top h2 {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-creative .about-top p {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  color: #555;
  line-height: 1.6;
}
.about-creative .about-img img {
  width: 100%;
  border-radius: 2rem;
}
.about-creative h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.about-creative p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.7;
}
.about-creative {
  /* PROGRESS */
}
.about-creative .progress-wrap {
  margin-top: 2.5rem;
}
.about-creative .progress-wrap .progress-item {
  margin-bottom: 1.5rem;
}
.about-creative .progress-wrap .progress-item span {
  font-size: 1.4rem;
}
.about-creative .progress-wrap .progress-item .progress {
  height: 0.8rem;
  background: #eee;
  border-radius: 5rem;
  overflow: hidden;
}
.about-creative .progress-wrap .progress-item .progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  border-radius: 5rem;
  animation: grow 1.5s ease;
}
.about-creative .progress-wrap .progress-item .w-100 {
  width: 100%;
}
.about-creative .progress-wrap .progress-item .w-80 {
  width: 80%;
}
.about-creative .progress-wrap .progress-item .w-85 {
  width: 85%;
}
.about-creative .progress-wrap .progress-item .w-90 {
  width: 90%;
}
.about-creative .about-bottom {
  background: #fff;
  padding: 3rem;
  border-radius: 1.5rem;
  margin-top: 5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
}
.about-creative .about-bottom p {
  font-size: 1.5rem;
}
.about-creative .right_part {
  padding-left: 2rem;
}

/* ================= SERVICES ================= */
.services-creative {
  background: #fff;
}
.services-creative .section-title h2 {
  font-size: 3.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services-creative .section-title p {
  font-size: 1.6rem;
  color: #666;
  margin-top: 1rem;
}
.services-creative .service-card {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.services-creative .service-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}
.services-creative .service-card .icon {
  width: 7rem;
  height: 7rem;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.services-creative .service-card h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.services-creative .service-card p {
  font-size: 1.4rem;
  color: #666;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  line-height: 1.6;
}
.services-creative .service-card:hover {
  transform: translateY(-1.2rem) scale(1.02);
}
.services-creative .service-card:hover::before {
  opacity: 1;
}
.services-creative .service-card:hover h4, .services-creative .service-card:hover p {
  color: #fff;
}

/* ================= ANIMATION ================= */
@keyframes grow {
  from {
    width: 0;
  }
}
.how-creative {
  background: #f8f9ff;
}
.how-creative .section-title h2 {
  font-size: 3.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.how-creative .section-title p {
  font-size: 1.6rem;
  color: #666;
  margin-top: 1rem;
}
.how-creative .how-img img {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
}
.how-creative .how-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  margin-bottom: 2rem;
  transition: 0.4s ease;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  position: relative;
}
.how-creative .how-card .number {
  min-width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-creative .how-card .content h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.how-creative .how-card .content p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}
.how-creative .how-card:hover {
  transform: translateX(1rem);
}
.how-creative .how-card:hover .number {
  transform: scale(1.1);
}
.how-creative .right_part {
  padding-left: 2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .how-creative .how-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.why-creative {
  background: #ffffff;
}
.why-creative .section-title h2 {
  font-size: 3.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-creative .section-title p {
  font-size: 1.6rem;
  color: #666;
  margin-top: 1rem;
}
.why-creative .why-card {
  padding: 3rem 2rem;
  border-radius: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(1rem);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  /* gradient border effect */
}
.why-creative .why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0.1rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.why-creative .why-card .icon {
  width: 6rem;
  height: 6rem;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}
.why-creative .why-card h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.why-creative .why-card p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}
.why-creative .why-card:hover {
  transform: translateY(-1rem) scale(1.03);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
}
.why-creative .why-card:hover .icon {
  transform: rotate(10deg) scale(1.1);
}

.testimonial-creative {
  background: #f8f9ff;
}
.testimonial-creative .section-title h2 {
  font-size: 3.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonial-creative .testimonial-card {
  background: #fff;
  padding: 3rem;
  border-radius: 2rem;
  text-align: center;
  transition: 0.4s ease;
  position: relative;
}
.testimonial-creative .testimonial-card p {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-creative .testimonial-card h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.testimonial-creative .testimonial-card span {
  font-size: 1.4rem;
  color: #888;
}
.testimonial-creative .testimonial-card:hover {
  transform: translateY(-1rem);
}
.testimonial-creative .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.testimonial-creative .swiper-pagination-bullet-active {
  background: #6a5cff;
}

.contact-creative .contact-info h2 {
  font-size: 3.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-creative .contact-info p {
  font-size: 1.6rem;
  margin: 1rem 0 3rem;
  color: #666;
}
.contact-creative .contact-info .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-creative .contact-info .info-item i {
  font-size: 2rem;
  color: #6a5cff;
  margin-top: 0.5rem;
}
.contact-creative .contact-info .info-item h5 {
  font-size: 1.6rem;
  font-weight: 600;
}
.contact-creative .contact-info .info-item p {
  font-size: 1.4rem;
  margin: 0.3rem 0 0;
}
.contact-creative .contact-form {
  background: rgba(255, 255, 255, 0.7);
  padding: 3rem;
  border-radius: 2rem;
  backdrop-filter: blur(1rem);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  /* gradient border */
}
.contact-creative .contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0.1rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.contact-creative .contact-form input, .contact-creative .contact-form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  border: none;
  background: #f4f6fb;
  font-size: 1.4rem;
  outline: none;
}
.contact-creative .contact-form input:focus, .contact-creative .contact-form textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(106, 92, 255, 0.2);
}
.contact-creative .contact-form button {
  width: 100%;
  padding: 1.3rem;
  border: none;
  border-radius: 1rem;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.3s;
}
.contact-creative .contact-form button:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.contact-pro {
  background: linear-gradient(135deg, #f8f9ff, #ffffff);
}
.contact-pro .contact-left h2 {
  font-size: 3.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-pro .contact-left p {
  margin: 1rem 0 3rem;
  font-size: 1.6rem;
}
.contact-pro .contact-left .info-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-pro .contact-left .info-box i {
  color: #6a5cff;
}
.contact-pro {
  /* FLOATING LABEL */
}
.contact-pro .floating {
  position: relative;
  margin-bottom: 2rem;
}
.contact-pro .floating input, .contact-pro .floating textarea, .contact-pro .floating select {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  background: transparent;
  outline: none;
}
.contact-pro .floating label {
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 0.5rem;
  font-size: 1.4rem;
  color: #888;
  transition: 0.3s;
}
.contact-pro .floating input:focus + label,
.contact-pro .floating input:valid + label,
.contact-pro .floating textarea:focus + label,
.contact-pro .floating textarea:valid + label,
.contact-pro .floating select:focus + label,
.contact-pro .floating select:valid + label {
  top: -0.8rem;
  font-size: 1.2rem;
  color: #6a5cff;
}
.contact-pro button {
  width: 100%;
  padding: 1.4rem;
  border-radius: 1rem;
  border: none;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.contact-pro button:hover {
  transform: translateY(-0.3rem);
}

.page-header {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
}
.page-header h1 {
  font-size: 4rem;
  font-weight: 700;
}
.page-header p {
  font-size: 1.6rem;
  color: #fff;
}

/* CONTACT */
.contact-pro .contact-left h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}
.contact-pro .contact-left .info-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-pro .contact-left .info-box i {
  color: #6a5cff;
  font-size: 2rem;
}
.contact-pro .contact-left .info-box span {
  font-size: 1.5rem;
}
.contact-pro .contact-left .contact-map {
  margin-top: 6rem;
}
.contact-pro .contact-left .contact-map iframe {
  width: 100%;
  height: 40rem;
  border-radius: 2rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
}
.contact-pro .contact-form-pro {
  background: rgba(255, 255, 255, 0.8);
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.05);
}
.contact-pro .contact-form-pro h3 {
  font-size: 2.4rem;
}
.contact-pro .contact-form-pro p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.contact-pro .contact-form-pro small {
  display: block;
  margin-bottom: 1rem;
  color: #999;
}

/* STATS */
.contact-stats {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 5rem;
}
.contact-stats .container {
  position: relative;
  z-index: 2;
}
.contact-stats .tagline {
  font-size: 2.2rem;
  color: #fff;
  max-width: 70rem;
  margin: 0 auto 0rem;
  font-weight: 500;
  line-height: 1.6;
}
.contact-stats .row {
  margin-top: 4rem;
}
.contact-stats .stat-box {
  background: #fff;
  color: #333;
  border-radius: 2rem;
  padding: 2rem 2rem;
  transition: 0.4s ease;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
  position: relative;
}
.contact-stats .stat-box i {
  font-size: 3rem;
  color: #6a5cff;
  margin-bottom: 1.5rem;
}
.contact-stats .stat-box h2 {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-stats .stat-box p {
  font-size: 1.6rem;
  color: #666;
}
.contact-stats .stat-box:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.2);
}

h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

p {
  font-size: 1.4rem;
  color: #666;
}

/* ================= HERO ================= */
.service-hero {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  text-align: center;
}
.service-hero h1 {
  font-size: 4rem;
  font-weight: 700;
}
.service-hero p {
  color: #eee;
  max-width: 60rem;
  margin: 1rem auto;
}
.service-hero .btn {
  margin-top: 2rem;
  padding: 1rem 3rem;
  border-radius: 5rem;
  background: #fff;
  color: #6a5cff;
  font-weight: 600;
  transition: 0.3s;
}
.service-hero .btn:hover {
  background: #000;
  color: #fff;
}

/* ================= FEATURES ================= */
.pg-features {
  background: #f8f9ff;
  text-align: center;
}
.pg-features .feature-box {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}
.pg-features .feature-box:hover {
  transform: translateY(-1rem);
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
}
.pg-features .feature-box:hover p {
  color: #fff;
}
.pg-features .feature-box:hover .icon-wrap {
  transform: scale(1.1);
}
.pg-features .feature-box h5 {
  font-size: 1.6rem;
  margin-top: 1rem;
}
.pg-features .feature-box p {
  font-size: 1.3rem;
}

/* ICON */
.icon-wrap {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-wrap i {
  color: #fff;
  font-size: 2.2rem;
  z-index: 2;
}
.icon-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  filter: blur(1.5rem);
  opacity: 0.4;
}

/* ================= TRUST ================= */
.pg-trust {
  text-align: center;
}
.pg-trust .trust-box {
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.pg-trust .trust-box:hover {
  transform: translateY(-0.5rem);
}
.pg-trust .trust-box h3 {
  font-size: 2.5rem;
  color: #6a5cff;
}
.pg-trust .trust-box p {
  margin-top: 0.5rem;
}

/* ================= BENEFITS ================= */
.pg-benefits {
  background: linear-gradient(180deg, #f7f8ff, #eef1ff);
}
.pg-benefits h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pg-benefits p {
  font-size: 1.45rem;
  color: #666;
  line-height: 1.7;
  max-width: 52rem;
}
.pg-benefits {
  /* LIST */
}
.pg-benefits .pg-list {
  margin-top: 2.5rem;
}
.pg-benefits .pg-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.45rem;
  margin-bottom: 1.2rem;
  padding: 1.2rem 1.6rem;
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  /* ICON STYLE */
}
.pg-benefits .pg-list li i {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.pg-benefits .pg-list li:hover {
  transform: translateX(0.8rem);
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  box-shadow: 0 1.5rem 3rem rgba(106, 92, 255, 0.3);
}
.pg-benefits .pg-list li:hover i {
  background: #fff;
  color: #6a5cff;
}
.pg-benefits .pg-list li:last-child {
  margin-bottom: 0;
}
.pg-benefits {
  /* IMAGE */
}
.pg-benefits img {
  border-radius: 2rem;
  transition: 0.4s ease;
}
.pg-benefits img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* ================= INTEGRATION ================= */
.pg-integration {
  background: #fff;
}
.pg-integration ul {
  margin-top: 2rem;
}
.pg-integration ul li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pg-integration ul li i {
  color: #6a5cff;
}

/* ================= PROCESS ================= */
.space_part {
  margin-top: 5rem;
}

/* ================= PAYMENT MODES ================= */
.pg-modes {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f7f8ff);
}
.pg-modes h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.pg-modes .space_part {
  margin-top: 2rem;
}
.pg-modes .mode-box {
  background: #fff;
  padding: 2.5rem 1rem;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  /* ICON STYLE */
}
.pg-modes .mode-box i {
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  transition: 0.4s;
}
.pg-modes .mode-box p {
  margin-top: 1.2rem;
  font-size: 1.35rem;
  font-weight: 500;
  color: #444;
}
.pg-modes .mode-box {
  /* HOVER */
}
.pg-modes .mode-box:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}
.pg-modes .mode-box:hover i {
  transform: scale(1.1) rotate(5deg);
}

/* ================= CTA ================= */
.pg-cta {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  text-align: center;
}
.pg-cta h2 {
  font-size: 3rem;
}
.pg-cta .btn {
  background: #fff;
  color: #6a5cff;
  padding: 1rem 3rem;
  border-radius: 5rem;
  font-weight: 600;
}
.pg-cta .btn:hover {
  background: #000;
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .service-hero p {
    font-size: 1.3rem;
  }
}
/* ICON */
.icon-wrap {
  width: 6rem;
  height: 6rem;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-wrap i {
  color: #fff;
  font-size: 2.2rem;
}

/* BENEFITS */
.pg-integration h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pg-integration p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  max-width: 50rem;
}
.pg-integration {
  /* LIST DESIGN */
}
.pg-integration .pg-list {
  margin-top: 2.5rem;
}
.pg-integration .pg-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.45rem;
  margin-bottom: 1.2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.pg-integration .pg-list li i {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.pg-integration .pg-list li:hover {
  transform: translateX(0.6rem);
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
}
.pg-integration .pg-list li:hover i {
  background: #fff;
  color: #6a5cff;
}
.pg-integration .pg-list li:last-child {
  margin-bottom: 0;
}

/* PROCESS */
.pg-process {
  background: #f8f9ff;
}
.pg-process .process-box {
  padding: 3rem;
  background: #fff;
  border-radius: 2rem;
  transition: 0.4s;
}
.pg-process .process-box:hover {
  transform: translateY(-1rem);
}
.pg-process .process-box h5 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.pg-process .process-box span {
  font-size: 2rem;
  color: #6a5cff;
}

/* PROCESS ICON */
.process-icon {
  width: 5rem;
  height: 5rem;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-icon i {
  color: #fff;
}

/* HERO */
.sb-hero {
  background: linear-gradient(135deg, #ff4ecd, #6a5cff);
  color: #fff;
  text-align: center;
}
.sb-hero h1 {
  font-size: 4rem;
  font-weight: 700;
}
.sb-hero p {
  font-size: 1.6rem;
  margin-top: 1rem;
}
.sb-hero .btn {
  margin-top: 2rem;
  padding: 1rem 3rem;
  border-radius: 5rem;
}

/* AUTOMATION */
.sb-automation img {
  border-radius: 2rem;
  max-width: 100%;
}
.sb-automation .sb-list {
  margin-top: 2rem;
}
.sb-automation .sb-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.sb-automation .sb-list li i {
  color: #fff;
}

/* ================= FLOW PROCESS ================= */
.sb-flow {
  background: #f8f9ff;
  text-align: center;
}
.sb-flow h2 {
  font-size: 3rem;
  font-weight: 700;
}
.sb-flow p {
  font-size: 1.4rem;
  color: #666;
  margin-top: 0.5rem;
}
.sb-flow .flow-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.sb-flow .flow-step {
  width: 22%;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  position: relative;
  padding: 2.5rem;
}
.sb-flow .flow-step i {
  font-size: 2.5rem;
  color: #6a5cff;
  margin-bottom: 1rem;
  transition: 0.3s;
}
.sb-flow .flow-step h5 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.sb-flow .flow-step p {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 0;
}
.sb-flow .flow-step:hover {
  transform: translateY(-1rem);
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
}
.sb-flow .flow-step:hover p {
  color: #fff;
}
.sb-flow .flow-step:hover i {
  color: #fff;
  transform: scale(1.2);
}
.sb-flow {
  /* MOBILE */
}
@media (max-width: 991px) {
  .sb-flow .flow-step {
    width: 48%;
  }
}
@media (max-width: 576px) {
  .sb-flow .flow-step {
    width: 100%;
  }
}

/* ================= INDUSTRIES ================= */
.sb-industries {
  background: #fff;
}
.sb-industries h2 {
  font-size: 3rem;
  font-weight: 700;
}
.sb-industries .industry-card {
  text-align: center;
  padding: 2.5rem;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  height: 100%;
}
.sb-industries .industry-card img {
  width: 100%;
  border-radius: 1.2rem;
  margin-bottom: 1.5rem;
  transition: 0.4s;
  max-width: 15rem;
}
.sb-industries .industry-card h5 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.sb-industries .industry-card p {
  font-size: 1.3rem;
  color: #666;
}
.sb-industries .industry-card:hover {
  transform: translateY(-1rem);
}
.sb-industries .industry-card:hover img {
  transform: scale(1.05);
}

/* SECURITY */
.sb-security {
  background: #f4f6ff;
}
.sb-security .row {
  align-items: center;
}
.sb-security h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.sb-security p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}
.sb-security .sb-list {
  margin-top: 2rem;
  margin-bottom: 0;
}
.sb-security .sb-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: #333;
}
.sb-security .sb-list li:last-child {
  margin-bottom: 0;
}
.sb-security .sb-list li i {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: 0.3s;
}
.sb-security .sb-list li:hover i {
  transform: scale(1.1);
}

/* DESCRIPTION */
.sb-description {
  text-align: center;
}
.sb-description p {
  max-width: 80rem;
  margin: 1rem auto;
  font-size: 1.4rem;
  color: #666;
}

/* FEATURES */
.sb-features {
  background: #fff;
}
.sb-features h2 {
  font-size: 2.8rem;
  font-weight: 700;
}
.sb-features .sb-card {
  padding: 3rem 2rem;
  border-radius: 2rem;
  text-align: center;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.sb-features .sb-card i {
  font-size: 2.5rem;
  color: #6a5cff;
  margin-bottom: 1rem;
}
.sb-features .sb-card h5 {
  font-size: 1.6rem;
  margin-top: 1rem;
}
.sb-features .sb-card p {
  font-size: 1.3rem;
  color: #666;
}
.sb-features .sb-card:hover {
  transform: translateY(-1rem);
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
}
.sb-features .sb-card:hover i {
  color: #fff;
}
.sb-features .sb-card:hover p {
  color: #fff;
}

/* ADVANCED */
/* ================= SB ADVANCED ================= */
.sb-advanced {
  background: #f8faff;
}
.sb-advanced .row {
  align-items: center;
}
.sb-advanced {
  /* IMAGE */
}
.sb-advanced img {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}
.sb-advanced img:hover {
  transform: scale(1.03);
}
.sb-advanced {
  /* CONTENT */
}
.sb-advanced h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.sb-advanced p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.sb-advanced {
  /* LIST */
}
.sb-advanced ul {
  margin-top: 2rem;
  padding: 0;
}
.sb-advanced ul li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.4rem;
  transition: 0.3s;
}
.sb-advanced ul li i {
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.sb-advanced ul li:hover {
  transform: translateX(0.6rem);
}
.sb-advanced {
  /* ================= RESPONSIVE ================= */
}
@media (max-width: 992px) {
  .sb-advanced {
    text-align: center;
  }
  .sb-advanced ul li {
    justify-content: center;
  }
  .sb-advanced img {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .sb-advanced p {
    font-size: 1.4rem;
  }
}

/* USE CASE */
.sb-usecases {
  background: #f8f9fc;
}

.use-box {
  padding: 3rem;
  border-radius: 2rem;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* AUTOMATION */
.sb-automation {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
}
.sb-automation p {
  color: #fff;
}

.auto-box {
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
}

/* TESTIMONIAL */
.sb-testimonial {
  background: #fff;
}

.quote {
  font-size: 2rem;
  font-style: italic;
}

/* FINAL CTA */
.sb-final-cta {
  background: #111;
  color: #fff;
}

/* ================= FEATURES ================= */
.api-features {
  background: #f8f9ff;
}
.api-features h2 {
  font-size: 2.6rem;
  font-weight: 700;
}
.api-features p {
  font-size: 1.4rem;
  color: #666;
}

/* ================= API CARD ================= */
.api-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
}
.api-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}
.api-card {
  /* GRADIENT BORDER */
}
.api-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  padding: 0.1rem;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.api-card h5 {
  font-size: 1.6rem;
  margin-top: 1.5rem;
}
.api-card p {
  font-size: 1.3rem;
  color: #666;
}

/* ================= ICON STYLE ================= */
.icon-wrap {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  position: relative;
  transition: 0.4s ease;
}
.icon-wrap i {
  font-size: 2.4rem;
  color: #fff;
  z-index: 2;
}
.icon-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  filter: blur(1.5rem);
  opacity: 0.4;
  z-index: 1;
}

.api-card:hover .icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

/* ================= API TYPES ================= */
.api-types img {
  border-radius: 1rem;
}
.api-types h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}
.api-types p {
  font-size: 1.4rem;
}
.api-types .api-list {
  margin-top: 2rem;
}
.api-types .api-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.api-types .api-list li i {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* ================= WORKFLOW ================= */
.api-workflow {
  background: #f8f9ff;
  text-align: center;
}
.api-workflow h2 {
  font-size: 2.5rem;
}
.api-workflow .step {
  background: #fff;
  padding: 3rem;
  border-radius: 1.5rem;
  transition: 0.3s;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
}
.api-workflow .step:hover {
  transform: translateY(-1rem);
}
.api-workflow .step .step-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
}
.api-workflow .step .step-icon i {
  color: #fff;
  font-size: 2rem;
}
.api-workflow .step span {
  font-size: 2rem;
  color: #6a5cff;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}
.api-workflow .step h5 {
  font-size: 1.6rem;
}
.api-workflow .step p {
  font-size: 1.3rem;
  color: #666;
}

/* ================= CODE ================= */
.api-code h2 {
  font-size: 2.5rem;
}
.api-code .code-box {
  background: #111;
  color: #00ff88;
  padding: 2rem;
  border-radius: 1rem;
  font-size: 1.3rem;
  overflow-x: auto;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

/* ================= BENEFITS ================= */
.api-benefits {
  background: linear-gradient(180deg, #f8f9ff, #eef1ff);
}
.api-benefits .section-title {
  font-size: 2.6rem;
  font-weight: 700;
}
.api-benefits .section-subtitle {
  font-size: 1.4rem;
  color: #666;
}
.api-benefits .benefit-box {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.06);
  /* Gradient Border Effect */
}
.api-benefits .benefit-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  padding: 1px;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.api-benefits .benefit-box {
  /* ICON STYLE */
}
.api-benefits .benefit-box .benefit-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s;
}
.api-benefits .benefit-box .benefit-icon i {
  color: #fff;
  font-size: 2.2rem;
  z-index: 2;
}
.api-benefits .benefit-box .benefit-icon {
  /* Glow effect */
}
.api-benefits .benefit-box .benefit-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  filter: blur(15px);
  opacity: 0.4;
  z-index: 1;
}
.api-benefits .benefit-box h5 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.api-benefits .benefit-box p {
  font-size: 1.35rem;
  color: #666;
  line-height: 1.6;
}
.api-benefits .benefit-box {
  /* HOVER EFFECT */
}
.api-benefits .benefit-box:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}
.api-benefits .benefit-box:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}
.api-benefits .benefit-box:hover p {
  color: #444;
}

/* ================= CTA ================= */
.api-cta {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  text-align: center;
}
.api-cta h2 {
  font-size: 2.5rem;
}
.api-cta p {
  font-size: 1.4rem;
  margin-top: 1rem;
  opacity: 0.9;
}

/* ================= GLOBAL ================= */
.po-hero h1,
.po-features h2,
.po-benefits h2,
.po-usecases h2,
.po-process h2,
.po-api h2,
.po-cta h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

.po-hero p,
.po-features p,
.po-benefits p,
.po-usecases p,
.po-process p,
.po-api p,
.po-stats p {
  font-size: 1.4rem;
  color: #666;
}

/* ================= HERO ================= */
.po-hero {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  text-align: center;
}
.po-hero h1 {
  font-size: 4rem;
}
.po-hero p {
  color: #eee;
  max-width: 60rem;
  margin: 1rem auto;
}
.po-hero .btn {
  margin-top: 2rem;
  padding: 1rem 3rem;
  border-radius: 5rem;
  background: #fff;
  color: #6a5cff;
  font-weight: 600;
}
.po-hero .btn:hover {
  background: #000;
  color: #fff;
}

/* ================= FEATURES ================= */
.po-features {
  background: #f8f9ff;
  text-align: center;
}
.po-features .po-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}
.po-features .po-card .icon-wrap {
  margin-bottom: 2rem;
}
.po-features .po-card:hover {
  transform: translateY(-1rem);
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
}
.po-features .po-card:hover p {
  color: #fff;
}
.po-features .po-card:hover .icon-wrap {
  transform: scale(1.1);
}
.po-features .po-card h5 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.po-features .po-card p {
  font-size: 1.3rem;
}

/* ================= ICON ================= */
.icon-wrap {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-wrap i {
  color: #fff;
  font-size: 2.2rem;
  z-index: 2;
}
.icon-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  filter: blur(1.5rem);
  opacity: 0.4;
}

/* ================= BENEFITS ================= */
.po-benefits {
  background: linear-gradient(180deg, #ffffff, #f7f8ff);
}
.po-benefits .po-list {
  margin-top: 2rem;
}
.po-benefits .po-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.po-benefits .po-list li i {
  color: #6a5cff;
}
.po-benefits .po-list li:hover {
  transform: translateX(0.5rem);
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
}
.po-benefits .po-list li:hover i {
  color: #fff;
}

/* ================= USE CASE ================= */
.po-usecases h2 {
  font-size: 2.8rem;
  font-weight: 700;
}
.po-usecases .use-box {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  /* Gradient Border Effect */
}
.po-usecases .use-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  padding: 1px;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.po-usecases .use-box i {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  z-index: 2;
  transition: 0.4s;
}
.po-usecases .use-box h5 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.po-usecases .use-box p {
  font-size: 1.35rem;
  color: #666;
  line-height: 1.6;
}
.po-usecases .use-box:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}
.po-usecases .use-box:hover i {
  transform: scale(1.1) rotate(5deg);
}
.po-usecases .use-box:hover p {
  color: #444;
}

/* ================= PROCESS ================= */
.po-process {
  background: #f8f9ff;
  text-align: center;
}
.po-process .process-box {
  background: #fff;
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}
.po-process .process-box:hover {
  transform: translateY(-1rem);
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
}
.po-process .process-box:hover span {
  color: #fff;
}
.po-process .process-box:hover p {
  color: #fff;
}
.po-process .process-box:hover .process-icon {
  transform: scale(1.1);
}
.po-process .process-box span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
  color: #6a5cff;
}

/* PROCESS ICON */
.process-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.process-icon i {
  color: #fff;
  font-size: 2rem;
}

/* ================= API ================= */
.po-api {
  background: #fff;
}
.po-api .code-box {
  background: #111;
  color: #00ff88;
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
  font-size: 1.3rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .po-hero h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .po-hero p {
    font-size: 1.3rem;
  }
}
.fintech-hero {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  position: relative;
  overflow: hidden;
  color: #fff;
  z-index: 1;
  /* soft glow background */
}
.fintech-hero::before {
  content: "";
  position: absolute;
  top: -8rem;
  left: -8rem;
  width: 30rem;
  height: 30rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}
.fintech-hero::after {
  content: "";
  position: absolute;
  bottom: -10rem;
  right: -10rem;
  width: 35rem;
  height: 35rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(100px);
}
.fintech-hero .container {
  position: relative;
  z-index: 2;
}
.fintech-hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.fintech-hero h1 span {
  display: block;
  font-weight: 600;
}
.fintech-hero p {
  font-size: 1.6rem;
  color: #f1f1f1;
  max-width: 50rem;
}
.fintech-hero .btn {
  padding: 1.2rem 3rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-weight: 500;
  transition: 0.3s;
  border: none;
}
.fintech-hero .btn.btn-light {
  background: #fff;
  color: #6a5cff;
}
.fintech-hero .btn.btn-light:hover {
  background: #f3f3f3;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.fintech-hero img {
  max-width: 100%;
  animation: floatHero 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

/* floating animation */
@keyframes floatHero {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .fintech-hero {
    text-align: center;
  }
  .fintech-hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .fintech-hero img {
    margin-top: 4rem;
  }
}
.fintech_capability {
  background: #f7f8fc;
}
.fintech_capability .text-center h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.fintech_capability .text-center p {
  font-size: 1.6rem;
  color: #666;
}
.fintech_capability .feature-box {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  /* icon */
}
.fintech_capability .feature-box i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  box-shadow: 0 10px 25px rgba(106, 92, 255, 0.3);
}
.fintech_capability .feature-box h5 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.fintech_capability .feature-box p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}
.fintech_capability .feature-box {
  /* hover effect */
}
.fintech_capability .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.fintech_capability .feature-box {
  /* gradient top border animation */
}
.fintech_capability .feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  transition: 0.4s;
}
.fintech_capability .feature-box:hover::before {
  width: 100%;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .fintech_capability .text-center h2 {
    font-size: 2.8rem;
  }
  .fintech_capability .feature-box {
    padding: 2.5rem;
  }
}
.api_intergirate {
  background: #ffffff;
  position: relative;
}
.api_intergirate h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.api_intergirate p {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 2rem;
}
.api_intergirate {
  /* Code Box */
}
.api_intergirate .api-box {
  background: #0f172a;
  color: #e2e8f0;
  padding: 2rem;
  border-radius: 15px;
  font-family: "Courier New", monospace;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.api_intergirate .api-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5rem;
  background: #1e293b;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.api_intergirate .api-box {
  /* fake dots */
}
.api_intergirate .api-box::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  width: 1rem;
  height: 1rem;
  background: #ff5f56;
  border-radius: 50%;
  box-shadow: 18px 0 #ffbd2e, 36px 0 #27c93f;
}
.api_intergirate .api-box {
  /* spacing for code */
  padding-top: 5rem;
}

/* floating animation */
@keyframes floatApi {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .api_intergirate {
    text-align: center;
  }
  .api_intergirate .api-box {
    text-align: left;
  }
  .api_intergirate img {
    margin-top: 4rem;
  }
}
@media (max-width: 576px) {
  .api_intergirate h2 {
    font-size: 2.8rem;
  }
}
.why_choose_part {
  background: #f7f8fc;
}
.why_choose_part .text-center h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.why_choose_part .benefit-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  padding: 1.8rem 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: 0.3s;
  border: 1px solid #eee;
}
.why_choose_part .benefit-item i {
  font-size: 2rem;
  min-width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  box-shadow: 0 8px 20px rgba(106, 92, 255, 0.3);
}
.why_choose_part .benefit-item p {
  font-size: 1.5rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}
.why_choose_part .benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .why_choose_part {
    text-align: center;
  }
  .why_choose_part .benefit-item {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .why_choose_part .text-center h2 {
    font-size: 2.6rem;
  }
  .why_choose_part .benefit-item {
    padding: 1.5rem;
  }
}
.use_cases_part {
  background: #ffffff;
}
.use_cases_part .text-center h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.use_cases_part .feature-box {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 1.8rem;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  /* subtle gradient overlay */
}
.use_cases_part .feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}
.use_cases_part .feature-box h5 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.use_cases_part .feature-box p {
  font-size: 1.5rem;
  color: #666;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.use_cases_part .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.use_cases_part .feature-box:hover::before {
  opacity: 1;
}
.use_cases_part .feature-box:hover h5, .use_cases_part .feature-box:hover p {
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .use_cases_part .feature-box {
    padding: 2.5rem;
  }
}
/* floating animation (reuse same feel) */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
.tech-hero {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* subtle background glow */
}
.tech-hero::before {
  content: "";
  position: absolute;
  width: 50rem;
  height: 50rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -10rem;
  right: -10rem;
  z-index: -1;
  filter: blur(8rem);
}
.tech-hero .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.6rem 1.4rem;
  border-radius: 5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.tech-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
}
.tech-hero h1 span {
  color: #ffd700;
}
.tech-hero p {
  font-size: 1.6rem;
  color: #f1f1f1;
  margin-top: 1.5rem;
  line-height: 1.7;
}
.tech-hero .hero-btns {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.tech-hero .hero-btns .btn {
  padding: 1.2rem 2.4rem;
  font-size: 1.4rem;
  border-radius: 3rem;
  transition: 0.3s ease;
}
.tech-hero .hero-btns .btn-gradient {
  background: #fff;
  color: #6a5cff;
  font-weight: 600;
}
.tech-hero .hero-btns .btn-gradient:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
}
.tech-hero .hero-btns .btn-outline {
  border: 1px solid #fff;
  color: #fff;
}
.tech-hero .hero-btns .btn-outline:hover {
  background: #fff;
  color: #6a5cff;
  transform: translateY(-2px);
}
.tech-hero img {
  max-width: 100%;
  transition: 0.4s ease;
}
.tech-hero img:hover {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .tech-hero {
    text-align: center;
  }
  .tech-hero h1 {
    font-size: 3rem;
  }
  .tech-hero .hero-btns {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .tech-hero h1 {
    font-size: 2.5rem;
  }
  .tech-hero p {
    font-size: 1.4rem;
  }
}
.tech-features {
  background: #f8faff;
}
.tech-features h2 {
  font-size: 3rem;
  font-weight: 600;
}
.tech-features .tech-card {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1.6rem;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
}
.tech-features .tech-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
}
.tech-features .tech-card .icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
}
.tech-features .tech-card .icon i {
  font-size: 2.4rem;
  color: #fff;
}
.tech-features .tech-card h5 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.tech-features .tech-card p {
  font-size: 1.4rem;
  color: #666;
}

/* ================= TECH WORKFLOW ================= */
.tech-workflow h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #111;
}
.tech-workflow {
  /* Workflow Wrapper */
}
.tech-workflow .workflow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  margin-top: 5rem;
  /* Line Between Steps */
}
.tech-workflow .workflow::before {
  content: "";
  position: absolute;
  top: 4rem;
  left: 5%;
  width: 90%;
  height: 0.2rem;
  background: linear-gradient(90deg, #6a5cff, #ff4ecd);
  z-index: 0;
}
.tech-workflow {
  /* Step Card */
}
.tech-workflow .step {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1.4rem;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 30rem;
  transition: 0.3s;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
}
.tech-workflow .step:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
}
.tech-workflow .step span {
  display: inline-block;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  margin-bottom: 2rem;
}
.tech-workflow .step h5 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
}
.tech-workflow .step p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}
.tech-workflow {
  /* ================= RESPONSIVE ================= */
}
@media (max-width: 992px) {
  .tech-workflow .workflow {
    flex-direction: column;
  }
  .tech-workflow .workflow::before {
    display: none;
  }
  .tech-workflow .step {
    max-width: 100%;
  }
}

.tech-deep-dive {
  background: #f8faff;
}
.tech-deep-dive .deep-content .tag {
  display: inline-block;
  font-size: 1.3rem;
  padding: 0.6rem 1.5rem;
  border-radius: 5rem;
  background: rgba(106, 92, 255, 0.1);
  color: #6a5cff;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.tech-deep-dive .deep-content h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.5rem;
}
.tech-deep-dive .deep-content h2 span {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tech-deep-dive .deep-content p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.tech-deep-dive .deep-content .deep-list {
  margin-top: 2rem;
}
.tech-deep-dive .deep-content .deep-list .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: #333;
}
.tech-deep-dive .deep-content .deep-list .item i {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
}
.tech-deep-dive .deep-content .deep-list .item:last-child {
  margin-bottom: 0;
}
.tech-deep-dive .deep-image img {
  max-width: 100%;
  border-radius: 2rem;
  transition: 0.4s;
}
.tech-deep-dive .deep-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .tech-deep-dive {
    text-align: center;
  }
  .tech-deep-dive .deep-list .item {
    justify-content: center;
  }
}
/* ================= TECH MODULES ================= */
.tech-modules {
  background: #fff;
}
.tech-modules h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #111;
}
.tech-modules .module-box {
  background: linear-gradient(180deg, #ffffff, #f8faff);
  padding: 3rem 2rem;
  border-radius: 1.6rem;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0.1rem solid #eef1ff;
}
.tech-modules .module-box i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tech-modules .module-box h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #222;
}
.tech-modules .module-box p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}
.tech-modules .module-box:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.08);
}

/* ================= TECH SECURITY ================= */
.tech-security {
  background: #f8faff;
  /* Image */
}
.tech-security img {
  max-width: 100%;
  border-radius: 2rem;
}
.tech-security {
  /* Heading */
}
.tech-security h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1.5rem;
}
.tech-security {
  /* Paragraph */
}
.tech-security p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.tech-security {
  /* List */
}
.tech-security ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tech-security ul li {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  /* Icon Style */
}
.tech-security ul li::before {
  content: "✔";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #ffffff;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
}
.tech-security ul li:hover {
  transform: translateX(0.5rem);
  transition: 0.3s;
}
.tech-security ul li:last-child {
  margin-bottom: 0;
}
.tech-security {
  /* ================= RESPONSIVE ================= */
}
@media (max-width: 992px) {
  .tech-security {
    text-align: center;
  }
  .tech-security ul li {
    justify-content: center;
  }
}

/* ================= HERO ================= */
/* ================= HERO PREMIUM ================= */
.hero {
  position: relative;
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #eef1ff, #f8f9ff);
  overflow: hidden;
  z-index: 1;
  /* BACKGROUND GLOW */
}
.hero::before {
  content: "";
  position: absolute;
  width: 50rem;
  height: 50rem;
  background: #6a5cff;
  filter: blur(150px);
  opacity: 0.2;
  top: -10rem;
  left: -10rem;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  width: 50rem;
  height: 100%;
  background: #ff4ecd;
  filter: blur(150px);
  opacity: 0.2;
  bottom: 0;
  right: -10rem;
  z-index: -1;
}
.hero {
  /* TAG */
}
.hero .tag {
  display: inline-block;
  background: rgba(106, 92, 255, 0.1);
  color: #6a5cff;
  padding: 0.6rem 1.5rem;
  border-radius: 5rem;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.hero {
  /* CONTENT */
}
.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-content h1 span {
  background: linear-gradient(90deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  font-size: 1.6rem;
  color: #666;
  margin: 2rem 0;
}
.hero {
  /* BUTTONS */
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-buttons .btn {
  padding: 1.2rem 2.5rem;
  border-radius: 5rem;
}
.hero {
  /* STATS */
}
.hero-stats {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
}
.hero-stats div h4 {
  font-size: 2rem;
  font-weight: 600;
}
.hero-stats div span {
  font-size: 1.3rem;
  color: #777;
}
.hero {
  /* IMAGE */
}
.hero-img .hero-image-wrapper {
  position: relative;
  padding: 2rem;
}
.hero-img .hero-image-wrapper img {
  width: 100%;
  border-radius: 2rem;
  animation: float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .hero {
    text-align: center;
  }
  .hero-content h1 {
    font-size: 3.2rem;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-img {
    margin-top: 4rem;
  }
}
/* ================= SERVICES ================= */
.services {
  background: linear-gradient(180deg, #f8f9ff, #eef1ff);
}
.services .service-card {
  position: relative;
  padding: 2rem 2rem;
  border-radius: 2rem;
  background: #fff;
  text-align: left;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  /* GRADIENT BORDER */
}
.services .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  padding: 1px;
  background: linear-gradient(120deg, #6a5cff, #ff4ecd);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.services .service-card {
  /* ICON */
}
.services .service-card .icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services .service-card .icon img {
  max-width: 6rem;
}
.services .service-card {
  /* TITLE */
}
.services .service-card h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.services .service-card {
  /* TEXT */
}
.services .service-card p {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.services .service-card {
  /* LINK */
}
.services .service-card a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #6a5cff;
  text-decoration: none;
  position: relative;
}
.services .service-card a::after {
  content: "→";
  margin-left: 5px;
  transition: 0.3s;
}
.services .service-card a:hover::after {
  margin-left: 1rem;
}
.services .service-card {
  /* HOVER EFFECT */
}
.services .service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.services .service-card {
  /* HOVER GLOW */
}
.services .service-card:hover::before {
  background: linear-gradient(120deg, #ff4ecd, #6a5cff);
}

/* ================= INDUSTRIES (UPGRADE) ================= */
.industries {
  background: #fff;
}
.industries a {
  text-decoration: none;
}
.industries .industry-card {
  padding: 2.5rem 1.5rem;
  border-radius: 1.8rem;
  text-align: center;
  background: #f8f9ff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  /* GRADIENT OVERLAY */
}
.industries .industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}
.industries .industry-card .icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  transition: 0.3s;
}
.industries .industry-card .icon img {
  max-width: 8rem;
}
.industries .industry-card h6 {
  font-size: 1.4rem;
  font-weight: 500;
  transition: 0.3s;
  color: #000;
}
.industries .industry-card:hover {
  transform: translateY(-10px);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.industries .industry-card:hover::before {
  opacity: 1;
}
.industries .industry-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
}
.industries .industry-card:hover h6 {
  color: #fff;
}

/* ================= OFFER WITH ICONS ================= */
.offer-section {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.offer-section h2 {
  font-size: 3rem;
  font-weight: 700;
}
.offer-section p {
  color: #94a3b8;
}
.offer-section {
  /* CARD */
}
.offer-section .offer-card {
  padding: 2.5rem 2rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: 0.4s;
  position: relative;
  /* ICON BOX */
}
.offer-section .offer-card .icon-box {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  box-shadow: 0 10px 25px rgba(106, 92, 255, 0.3);
}
.offer-section .offer-card .icon-box img {
  max-width: 5rem;
}
.offer-section .offer-card h5 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.offer-section .offer-card p {
  font-size: 1.2rem;
  color: #cbd5f5;
}
.offer-section .offer-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.offer-section .offer-card a.explore_now {
  font-size: 1.4rem;
  color: #cbd5f5;
  text-decoration: none;
  position: relative;
}
.offer-section .offer-card a.explore_now::after {
  content: "→";
  margin-left: 5px;
  transition: 0.3s;
}
.offer-section {
  /* INFO BLOCK */
}
.offer-section .offer-info {
  padding: 2rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: 0.3s;
  position: relative;
}
.offer-section .offer-info a.explore_now {
  font-size: 1.4rem;
  color: #cbd5f5;
  text-decoration: none;
  position: relative;
}
.offer-section .offer-info a.explore_now::after {
  content: "→";
  margin-left: 5px;
  transition: 0.3s;
}
.offer-section .offer-info .icon-small {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #6a5cff;
}
.offer-section .offer-info .icon-small img {
  max-width: 8rem;
}
.offer-section .offer-info h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.offer-section .offer-info p {
  font-size: 1.4rem;
  color: #cbd5f5;
}
.offer-section .offer-info:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
}

/* ================= TECH STACK REDESIGN ================= */
.tech-stack {
  background: linear-gradient(180deg, #f8f9ff, #eef1ff);
  color: #fff;
  position: relative;
  overflow: hidden;
  color: #212529;
  z-index: 1;
  /* BG GLOW */
}
.tech-stack::before {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  background: #6a5cff;
  filter: blur(12rem);
  opacity: 0.15;
  top: -10rem;
  left: -10rem;
  z-index: -1;
}
.tech-stack::after {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  background: #ff4ecd;
  filter: blur(12rem);
  opacity: 0.15;
  bottom: -10rem;
  right: -10rem;
  z-index: -1;
}
.tech-stack {
  /* LEFT CONTENT */
}
.tech-stack .tech-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #212529;
}
.tech-stack .tech-content p {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.tech-stack {
  /* STATS */
}
.tech-stack .tech-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}
.tech-stack .tech-stats .stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tech-stack .tech-stats .stat span {
  font-size: 1.3rem;
  color: #666;
}
.tech-stack {
  /* GRID */
}
.tech-stack .tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.tech-stack .tech-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.6rem;
  background: linear-gradient(90deg, #6a5cff, #ff4ecd);
  backdrop-filter: blur(10px);
  transition: 0.3s;
  color: #fff;
}
.tech-stack .tech-item i {
  font-size: 2rem;
  color: #fff;
}
.tech-stack .tech-item span {
  font-size: 1.4rem;
  font-weight: 500;
}
.tech-stack .tech-item:hover {
  transform: translateY(-6px);
  background: linear-gradient(90deg, #ff4ecd, #6a5cff);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .tech-stack {
    text-align: center;
  }
  .tech-stack .tech-stats {
    justify-content: center;
  }
  .tech-stack .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
  }
}
/* ================= DIFFERENCE FINAL ================= */
.difference {
  background: linear-gradient(180deg, #f8f9ff, #eef1ff);
}
.difference .diff-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.difference .diff-content h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.difference .diff-content p {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.difference {
  /* IMAGE */
}
.difference .diff-image {
  text-align: center;
}
.difference .diff-image img {
  width: 100%;
  max-width: 45rem;
  border-radius: 2rem;
  animation: float 4s ease-in-out infinite;
}
.difference {
  /* LIST */
}
.difference .diff-list {
  margin-top: 2rem;
  padding-left: 0;
}
.difference .diff-list li {
  list-style: none;
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2.5rem;
}
.difference .diff-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #6a5cff;
  font-weight: bold;
}
.difference .diff-list li strong {
  color: #111;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* RESPONSIVE */
@media (max-width: 991px) {
  .difference {
    text-align: center;
  }
  .difference .diff-image {
    margin-top: 3rem;
  }
}
/* ================= POWER SECTION ================= */
.power-section {
  background: linear-gradient(135deg, #eef1ff, #f8f9ff);
  position: relative;
  overflow: hidden;
  /* GLOW BG */
}
.power-section::before {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  background: #6a5cff;
  filter: blur(12rem);
  opacity: 0.15;
  top: -10rem;
  left: -10rem;
}
.power-section::after {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  background: #ff4ecd;
  filter: blur(12rem);
  opacity: 0.15;
  bottom: -10rem;
  right: -10rem;
}
.power-section {
  /* CONTENT */
}
.power-section .power-content .tag {
  display: inline-block;
  background: rgba(106, 92, 255, 0.1);
  color: #6a5cff;
  padding: 0.6rem 1.4rem;
  border-radius: 5rem;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.power-section .power-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.power-section .power-content p {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.power-section {
  /* FEATURES */
}
.power-section .power-features {
  margin-top: 2rem;
}
.power-section .power-features .feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.power-section .power-features .feature span {
  color: #6a5cff;
  font-weight: bold;
  font-size: 1.6rem;
}
.power-section .power-features .feature p {
  margin: 0;
  font-size: 1.4rem;
  color: #444;
}
.power-section {
  /* IMAGE */
}
.power-section .power-image {
  text-align: center;
}
.power-section .power-image img {
  width: 100%;
  max-width: 55rem;
  border-radius: 2rem;
  animation: float 4s ease-in-out infinite;
}

/* FLOAT */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
/* RESPONSIVE */
@media (max-width: 991px) {
  .power-section {
    text-align: center;
  }
  .power-section .power-image {
    margin-bottom: 3rem;
  }
  .power-section .power-features .feature {
    justify-content: center;
  }
}
/* ================= TESTIMONIALS ================= */
.testimonials {
  background: #f8f9ff;
}
.testimonials h2 {
  font-size: 3rem;
  font-weight: 700;
}
.testimonials .testi-card {
  padding: 3rem 2rem;
  border-radius: 2rem;
  background: #fff;
  position: relative;
  transition: 0.4s;
  height: 100%;
  /* QUOTE ICON */
}
.testimonials .testi-card::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 6rem;
  color: rgba(106, 92, 255, 0.1);
}
.testimonials .testi-card p {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 2rem;
}
.testimonials .testi-card .user {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials .testi-card .user .avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.testimonials .testi-card .user h6 {
  margin: 0;
  font-weight: 600;
  font-size: 1.6rem;
}
.testimonials .testi-card .user span {
  font-size: 1.2rem;
  color: #777;
}
.testimonials .testi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ================= CTA TRUST ================= */
.cta-trust {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  position: relative;
  overflow: hidden;
  /* GLOW EFFECT */
}
.cta-trust::before {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  opacity: 0.1;
  filter: blur(12rem);
  top: -10rem;
  left: -10rem;
}
.cta-trust .cta-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 4rem 3rem;
  border-radius: 2.4rem;
  color: #fff;
}
.cta-trust .cta-box .tag {
  display: inline-block;
  font-size: 1.3rem;
  padding: 0.6rem 1.5rem;
  border-radius: 5rem;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}
.cta-trust .cta-box h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-trust .cta-box p {
  font-size: 1.5rem;
  max-width: 60rem;
  margin: 0 auto 2rem;
  color: #f1f1f1;
}
.cta-trust .cta-box {
  /* BUTTONS */
}
.cta-trust .cta-box .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-trust .cta-box .cta-buttons .btn {
  padding: 1.2rem 2.5rem;
  border-radius: 5rem;
  font-size: 1.4rem;
}
.cta-trust .cta-box .cta-buttons .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}
.cta-trust .cta-box .cta-buttons .btn-outline-light:hover {
  background: #fff;
  color: #6a5cff;
}
.cta-trust .cta-box {
  /* STATS */
}
.cta-trust .cta-box .cta-stats {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-trust .cta-box .cta-stats span {
  font-size: 1.4rem;
  font-weight: 500;
}

/* ================= FOOTER ================= */
.footer-section {
  background: #020617;
  color: #fff;
  padding: 5rem 0 2rem;
  position: relative;
}
.footer-section p {
  color: #94a3b8;
  font-size: 1.4rem;
}
.footer-section {
  /* BRAND */
}
.footer-section .footer-brand .logo img {
  background: #fff;
  padding: 1rem;
  max-width: 18rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.footer-section .footer-brand p {
  max-width: 30rem;
}
.footer-section {
  /* LINKS */
}
.footer-section .footer-links h5 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.footer-section .footer-links ul {
  padding: 0;
  list-style: none;
}
.footer-section .footer-links ul li {
  margin-bottom: 0.8rem;
}
.footer-section .footer-links ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 1.4rem;
  transition: 0.3s;
}
.footer-section .footer-links ul li a:hover {
  color: #fff;
  padding-left: 5px;
}
.footer-section {
  /* CONTACT */
}
.footer-section .footer-contact h5 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.footer-section .footer-contact p {
  margin-bottom: 0.8rem;
}
.footer-section .footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}
.footer-section .footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-section {
  /* SOCIAL */
}
.footer-section .footer-social {
  margin-top: 1.5rem;
}
.footer-section .footer-social a {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: 0.3s;
}
.footer-section .footer-social a:hover {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  transform: translateY(-3px);
}
.footer-section {
  /* BOTTOM */
}
.footer-section .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  color: #fff;
}
.footer-section .footer-bottom p {
  font-size: 1.3rem;
  color: #fff;
}
.footer-section .footer-bottom p a {
  color: #fff;
}
.footer-section {
  /* RESPONSIVE */
}
@media (max-width: 991px) {
  .footer-section {
    text-align: center;
    padding: 3rem 0 2rem;
  }
  .footer-section .footer-brand p {
    margin: 0 auto;
  }
}

/* RESPONSIVE */
.powerfull_control {
  background: linear-gradient(135deg, #f5f3ff 0%, #fff0fa 100%);
}
.powerfull_control h2 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.powerfull_control p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #6c6f7f;
  margin-bottom: 1.5rem;
}
.powerfull_control img {
  max-width: 100%;
  border-radius: 1.6rem;
  transition: all 0.4s ease;
}

.billing_experience {
  background: #ffffff;
}
.billing_experience h2 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.billing_experience p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #6c6f7f;
  margin-bottom: 1.5rem;
}
.billing_experience img {
  max-width: 100%;
  border-radius: 1.6rem;
  transition: all 0.4s ease;
}
.billing_experience .col-lg-6:hover img {
  transform: translateY(-1rem) scale(1.02);
}

.why_retails {
  background: linear-gradient(135deg, #f8f7ff 0%, #fff2fb 100%);
}
.why_retails h2 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why_retails .d-flex {
  align-items: flex-start;
  padding: 1.2rem 1.5rem;
  border-radius: 1.2rem;
  background: #ffffff;
  box-shadow: 0 1rem 3rem rgba(106, 92, 255, 0.08);
  transition: all 0.3s ease;
}
.why_retails .d-flex i {
  font-size: 1.6rem;
  color: #6a5cff;
  margin-top: 0.3rem;
}
.why_retails .d-flex p {
  font-size: 1.5rem;
  color: #6c6f7f;
  margin: 0;
  line-height: 1.6;
}
.why_retails .d-flex:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 2rem 4rem rgba(106, 92, 255, 0.15);
}
.why_retails img {
  max-width: 100%;
  border-radius: 1.6rem;
  transition: all 0.4s ease;
}
.why_retails .col-lg-6:hover img {
  transform: scale(1.03);
}

.use_cases_part .use-case-card {
  border: none;
  border-radius: 1.6rem;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
}
.use_cases_part .use-case-card .icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.use_cases_part .use-case-card h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.use_cases_part .use-case-card p {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}
.use_cases_part .use-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 2rem 4rem rgba(106, 92, 255, 0.15);
}

.timeline_part {
  background: linear-gradient(135deg, #f8f9ff, #fff0fb);
}
.timeline_part h2 {
  font-size: 3.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.timeline_part .row {
  position: relative;
}
.timeline_part .row::before {
  content: "";
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  opacity: 0.2;
}
.timeline_part .col-md-4 {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
}
.timeline_part .col-md-4 h4 {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  box-shadow: 0 1rem 2.5rem rgba(106, 92, 255, 0.3);
  transition: 0.3s;
}
.timeline_part .col-md-4 h6 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1f1f2e;
  margin-bottom: 1rem;
}
.timeline_part .col-md-4 p {
  font-size: 1.4rem;
  color: #6c6f7f;
  max-width: 22rem;
  margin: 0 auto;
  line-height: 1.6;
}
.timeline_part .col-md-4:hover h4 {
  transform: scale(1.1);
  box-shadow: 0 1.5rem 3rem rgba(255, 78, 205, 0.35);
}

/* =========================
   LOGIN PAGE
========================= */
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  body {
    overflow-y: auto;
  }
  .login-page {
    height: auto;
  }
  .login-page .row {
    height: auto;
  }
  .login-page .login-right {
    min-height: 100vh;
    padding: 4rem 2rem;
  }
  .login-page .login-right .form-header h2 {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 58%;
  }
  .login-page .login-right .social-login {
    flex-direction: column;
  }
  .login-page .login-right .login-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .login-page .login-right .form-header h2 {
    font-size: 2.8rem;
  }
}
/* =========================
   LOGIN PAGE
========================= */
.login-page {
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
}
.login-page .logo {
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
}
.login-page .logo a {
  display: block;
}
.login-page .login-left {
  position: relative;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem;
  overflow: hidden;
}
.login-page .login-left::before {
  content: "";
  position: absolute;
  width: 45rem;
  height: 45rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -10rem;
  left: -10rem;
}
.login-page .login-left::after {
  content: "";
  position: absolute;
  width: 35rem;
  height: 35rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -10rem;
  right: -10rem;
}
.login-page .login-left .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}
.login-page .login-left .content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 55rem;
}
.login-page .login-left .content .logo {
  margin-bottom: 3rem;
}
.login-page .login-left .content .logo img {
  max-width: 18rem;
}
.login-page .login-left .content .tag {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 5rem;
  background: rgba(255, 255, 255, 0.15);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.login-page .login-left .content h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.login-page .login-left .content h1 span {
  color: #ffe082;
}
.login-page .login-left .content p {
  font-size: 1.7rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4rem;
}
.login-page .login-left .content .features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.login-page .login-left .content .features .feature-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1.5rem 1rem;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.login-page .login-left .content .features .feature-box i {
  font-size: 2rem;
}
.login-page .login-left .content .features .feature-box span {
  font-size: 1.5rem;
  font-weight: 500;
}
.login-page {
  /* RIGHT SIDE */
}
.login-page .login-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #fff;
}
.login-page .login-right .login-form-wrapper {
  width: 100%;
  max-width: 48rem;
}
.login-page .login-right .mobile-logo {
  text-align: center;
  margin-bottom: 3rem;
}
.login-page .login-right .mobile-logo img {
  max-width: 25rem;
}
.login-page .login-right .form-header {
  margin-bottom: 4rem;
}
.login-page .login-right .form-header h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}
.login-page .login-right .form-header p {
  color: #777;
  font-size: 1.6rem;
}
.login-page .login-right .form-group {
  margin-bottom: 2.5rem;
}
.login-page .login-right .form-group label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #333;
}
.login-page .login-right .form-group .input-box {
  position: relative;
}
.login-page .login-right .form-group .input-box i {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  color: #777;
  font-size: 1.6rem;
}
.login-page .login-right .form-group .input-box .form-control {
  height: 6rem;
  border-radius: 1.6rem;
  border: 1px solid #ddd;
  padding-left: 5.5rem;
  font-size: 1.5rem;
  box-shadow: none;
}
.login-page .login-right .form-group .input-box .form-control:focus {
  border-color: #6a5cff;
  box-shadow: 0 0 0 4px rgba(106, 92, 255, 0.12);
}
.login-page .login-right .login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.login-page .login-right .login-options .form-check-label {
  font-size: 1.4rem;
  color: #666;
}
.login-page .login-right .login-options a {
  color: #6a5cff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
}
.login-page .login-right .login-btn {
  width: 100%;
  height: 6rem;
  border: none;
  border-radius: 1.6rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  transition: 0.3s;
}
.login-page .login-right .login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 3rem rgba(106, 92, 255, 0.25);
}
.login-page .login-right .divider {
  text-align: center;
  position: relative;
  margin: 3rem 1rem;
}
.login-page .login-right .divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
}
.login-page .login-right .divider span {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 2rem;
  color: #999;
  font-size: 1.4rem;
}
.login-page .login-right .social-login {
  display: flex;
  gap: 1.5rem;
}
.login-page .login-right .social-login .social-btn {
  flex: 1;
  height: 5.5rem;
  border-radius: 1.4rem;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.3s;
}
.login-page .login-right .social-login .social-btn i {
  margin-right: 0.8rem;
}
.login-page .login-right .social-login .social-btn:hover {
  border-color: #6a5cff;
  color: #6a5cff;
}
.login-page .login-right .register-link {
  text-align: center;
  margin-top: 3rem;
  color: #666;
  font-size: 1.5rem;
}
.login-page .login-right .register-link a {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(99, 102, 241, 0.25);
}
.login-page .login-right .register-link a i {
  margin-right: 0.5rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .login-page .login-right {
    padding: 3rem 2rem;
  }
  .login-page .login-right .form-header h2 {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .login-page .login-right .form-header h2 {
    font-size: 2.8rem;
  }
  .login-page .login-right .social-login {
    flex-direction: column;
  }
  .login-page .login-right .login-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width: 1199px) {
  html {
    font-size: 53.5%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 48.5%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .navbar .navbar-nav {
    align-items: flex-start;
  }
  .navbar .nav-link {
    margin: 1rem 0;
    min-height: auto;
  }
  .navbar .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    animation: none;
    margin: 0;
  }
  .navbar .dropdown-item {
    padding-left: 2rem;
  }
  .hero {
    text-align: center;
    padding: 3rem 2rem;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-img {
    margin-top: 4rem;
  }
  .why-section {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .timeline_part .row::before {
    display: none;
  }
  .po-process .process-box {
    margin-bottom: 2rem;
  }
  .sb-automation .left_part {
    margin-bottom: 2rem;
  }
  .tech-hero .hero-btns .btn {
    padding: 0.8rem 2rem;
    line-height: normal;
  }
  .fintech-hero .btn {
    padding: 0.8rem 2rem;
    line-height: normal;
  }
  .hero-buttons .btn {
    padding: 0.8rem 2rem;
    line-height: normal;
  }
  .tech-security .right_part {
    margin-top: 2rem;
  }
  .tech-deep-dive .deep-content {
    margin-bottom: 2rem;
  }
  .tech-modules .module-box {
    padding: 1.5rem;
  }
  section.tech-hero img {
    margin-top: 4rem;
  }
  .tech-workflow .workflow {
    margin-top: 2rem;
  }
  .po-benefits .left_part {
    margin-bottom: 2rem;
  }
  .sb-security .right_part {
    margin-top: 2rem;
  }
  .navbar {
    padding: 1rem;
  }
  h2 {
    font-size: 2.6rem !important;
  }
  .contact-pro .contact-form-pro {
    margin-top: 2rem;
  }
  h1 {
    font-size: 2.6rem !important;
  }
  img.logo {
    max-width: 15rem;
  }
  .pg-trust .trust-box {
    margin-bottom: 2rem;
  }
  .pg-benefits img {
    margin-top: 2rem;
  }
  .pg-integration img {
    margin-bottom: 2rem;
  }
  .space_part {
    margin-top: 2rem;
  }
  .pg-process .process-box {
    margin-bottom: 2rem;
  }
  .pg-modes .mode-box {
    padding: 1.5rem 1rem;
  }
  .pg-modes .space_part .row {
    row-gap: 1.5rem;
  }
  .testimonial-creative .swiper-pagination {
    bottom: 0;
  }
  .about-creative .right_part, .how-creative .right_part {
    margin-top: 2rem;
    margin-left: 0;
    padding-left: 0;
  }
  .hero-buttons {
    justify-content: center;
  }
  .cta-trust .cta-box {
    padding: 3rem 2rem;
  }
  section {
    padding: 3rem 2rem;
    overflow-x: hidden;
  }
  .navbar .nav-item.cta {
    margin-left: 0;
    margin-top: 1rem;
  }
  .section-heading h2, .offer-section h2, .tech-stack .tech-content h2, .difference .diff-content h2, .power-section .power-content h2, .testimonials h2, .trusted h2 {
    font-size: 2.4rem;
  }
  .section-heading p, .offer-section p, .tech-stack .tech-content p, .difference .diff-content p, .power-section .power-content p, .testimonials p, .trusted p {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=style.css.map */