/* Sticky container */
.mobile-sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  z-index: 999;
}

/* Button */
.mobile-sticky-cta .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7141b1;
  color: #fff;
  font-weight: 600;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  gap: 10px;
}

/* Visible state */
.mobile-sticky-cta.show {
  bottom: 0;
}

/* Hide on desktop */
@media (min-width: 768px) {
  .mobile-sticky-cta {
    display: none;
  }

}
.text-purple {
    color: rgb(113, 65, 177);
}

.circle-wrapper {
  width: 380px;          /* full circle diameter */
  height: 380px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-item {
  position: absolute;
  top: 50%;
  left: 50%;
   opacity: 0;
  transform: scale(0) rotate(0deg) translate(0);
  transition:
    transform 1s cubic-bezier(.22,1,.36,1),
    opacity 0.6s ease;
}

/* 8 icons evenly spaced across RIGHT semi-circle ( -90° → +90° ) */
.hero.show .circle-item:nth-child(1) {
  transform: rotate(-90deg) translate(320px) rotate(90deg) scale(1);
  opacity: 1;
  transition-delay: 0.2s;
}

.hero.show .circle-item:nth-child(2) {
  transform: rotate(-65deg) translate(300px) rotate(65deg) scale(1);
  opacity: 1;
  transition-delay: 0.35s;
}

.hero.show .circle-item:nth-child(3) {
  transform: rotate(-40deg) translate(275px) rotate(40deg) scale(1);
  opacity: 1;
  transition-delay: 0.5s;
}

.hero.show .circle-item:nth-child(4) {
  transform: rotate(-15deg) translate(255px) rotate(15deg) scale(1);
  opacity: 1;
  transition-delay: 0.65s;
}

.hero.show .circle-item:nth-child(5) {
  transform: rotate(15deg) translate(240px) rotate(-15deg) scale(1);
  opacity: 1;
  transition-delay: 0.8s;
}

.hero.show .circle-item:nth-child(6) {
  transform: rotate(40deg) translate(240px) rotate(-40deg) scale(1);
  opacity: 1;
  transition-delay: 0.95s;
}

.hero.show .circle-item:nth-child(7) {
  transform: rotate(65deg) translate(225px) rotate(-65deg) scale(1);
  opacity: 1;
  transition-delay: 1.1s;
}


/* positioning helpers */
.top-25 {
  top: 25% !important;
}

.top-50 {
  top: 50% !important;
}

.top-60 {
  top: 60% !important;
}

.start-50 {
  left: 50% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

/* margins */
.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.ms-n5 {
  margin-left: -3rem !important;
}

.ms-xl-n8 {
  margin-left: -3.5rem !important;
}

/* responsive */
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
 
}

@media (min-width: 1200px) {
  .ms-xl-n8 {
    margin-left: -3.5rem !important;
  }
}
/* ===============================
   CLIENT LOGOS
=============================== */

.client-logo-list {
  display: grid;
  grid-auto-flow: column;       /* one horizontal line on desktop */
  grid-auto-columns: max-content;
  justify-content: center;
  gap: 50px;
}

/* Logo box */
.logo-box {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo image */
.logo-box img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
}
.logo-box img {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-box:hover img {
  opacity: 1;
  transform: translateY(-4px) scale(1.05);
}

/* ===============================
   MOBILE (2 LOGOS PER ROW)
=============================== */
@media (max-width: 768px) {
  .client-logo-list {
    grid-auto-flow: row;              /* switch to rows */
    grid-template-columns: repeat(2, 1fr); /* ✅ 2 logos per row */
    gap: 20px;
  }
}

/*why choose us section */
.icon-box-s3 {
      padding: 15px 35px;
    border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.icon-box-s3:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box-s3 .top-box {
  margin-bottom: 25px;
}

.icon-box-s3 .icon-main {

  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #4f46e5;
  font-size: 60px;
}

.icon-box-s3 h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  color: #1b2f45;
}

.icon-box-s3 p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.quick-stats .d-flex{
justify-content: center;
align-items: center;
}


.stat-card {
  padding: 24px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
  color: #1d9be4  ; 
}

.stat-label {
    margin-left: 24px;
    font-size: 16px;
    text-align: left;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #666;
}

/* Mobile tuning */
@media (max-width: 576px) {
.stat-number {
  font-size: 60px;
}
.quick-stats .d-flex{
justify-content: start;
}
}
/* ===============================
   PLATFORM SECTION (LEFT SIDE)
   (Your working UI – unchanged)
================================ */

.platform-section {
  background: linear-gradient(180deg,#f8fbff,#ffffff);
}

.platform-title {
  font-size: 38px;
  line-height: 1.2;
}

.platform-title span {
  color: #1b2f45;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-details {
    display: flex;
     font-size: 18px;
  color: #666;

}
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1d9be4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.explore-link i {
  transition: transform 0.3s ease;
}



.explore-link:hover i {
  transform: translateX(6px);
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  transition: .3s;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.feature-item h5 {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 20px;
}

.feature-item p {
  font-size: 16px;
  color: #666;
}

.image-stack-vertical {
  position: relative;
}

/* Base */
.base-img {
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Shared floating style */
.floating-img {
  position: absolute;
  opacity: 0;
  transition: all 0.9s cubic-bezier(.22,1,.36,1);
}

/* BACK IMAGE (table.webp) */
.back-img {
    width: 37%;
    bottom: 41%;
    left: 4%;

  z-index: 2;

  /* start position */
  transform: translate(-50%, 80px) scale(0.95);
  transition-delay: 0.15s;
}

/* FRONT IMAGE (coloured-card.webp) */
.front-img {
      width: 40%;
    bottom: 0;
    left: 90%;
  z-index: 3;

  /* start position */
  transform: translate(-50%, 120px) scale(0.9);
  transition-delay: 0.45s;
}

.platform-section2.show .back-img {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  animation: floatSlow 6s ease-in-out infinite;
}

.platform-section2.show .front-img {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  animation: floatFast 5s ease-in-out infinite;
}
@keyframes floatSlow {
  0% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -12px); }
  100% { transform: translate(-50%, 0); }
}

@keyframes floatFast {
  0% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -18px); }
  100% { transform: translate(-50%, 0); }
}

.tech-logo-section {
  background: #ffffff;
}

.logo-pill {
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 64px;
  transition: all 0.25s ease;
}

.logo-pill span {
  font-weight: 500;
  color: #334155;
  font-size: 15px;
}

.logo-pill img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-pill:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
/* Hover effect */
.feature-item-link:hover .feature-item{
  border-color: #1d9be4;
}

.cta-section {
  background: linear-gradient(135deg, #0d6efd15, #6610f215);
}

.cta-box {
  background: #1d9be4;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13,110,253,0.15);
  color: #fff;
}
.trust-bar {
  opacity: 0.95;
  padding-top: 10px;
}

/* Each trust badge */
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* Icons */
.trust-item i {
  margin-right: 5px;
  color: #7141b1; /* subtle gold = trust */
}

/* Text */
.trust-item span {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .trust-bar {
    gap: 12px;
  }
 .floating-img  {
    display: none;
  }
  .float-img{
    display: none;
  }
  .trust-item {
    width: 100%;
    justify-content: center;
  }

  .trust-item span {
    white-space: normal;
    text-align: center;
    font-size: 14px;
  }
}

/* VIDEO */
.video-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* PODCAST LIST */
.podcast-points li {
  margin-bottom: 14px;
  font-size: 16px;
}

.podcast-points i {
  color: #7040af;
  margin-right: 10px;
}

.partner_img {
  max-width: 100%;
  max-height: 80px;
}