/* ── VARIABLES & BASE ── */
:root {
  --purple: #8b74e7;
  --purple-dark: #5c3fb5;
  --purple-section: #5b4ab0;
  --purple-light-bg: radial-gradient(
    circle at 0% 0%,
    #ecdbff,
    #f9f3ff,
    #e1ceff
  );
  --text-dark: #313131;
  --text-mid: #555577;
  --text-black: #000000;
  --font: "Inter", sans-serif;
  --font-q: "Questrial", sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.4;
}
.container {
  max-width: 1120px;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ── NAVBAR ── */
.site-navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  min-height: 100px;
}
.site-navbar .navbar-brand img {
  width: 100%;
  max-width: 170px;
}
.site-navbar .nav-center {
  position: absolute;
  left: 30%;
  transform: translateX(-50%);
}
.site-navbar .nav-link {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark) !important;
  padding: 6px 3px !important;
  transition: color 0.2s;
}
.site-navbar .nav-link:hover {
  color: var(--purple) !important;
}
.nav-contact {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-contact:hover {
  color: var(--purple);
}

@media (max-width: 991.98px) {
  .site-navbar .nav-center {
    position: static;
    transform: none;
  }
  .site-navbar .navbar-collapse {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 0 19px;
    margin-top: 8px;
  }
  .site-navbar .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid #f0eeff;
  }
  .nav-actions {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-top: 16px;
    padding-top: 8px;
  }
}

/* ── BUTTONS ── */
.btn-purple {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 22px;
  transition: background 0.2s;
}
.btn-purple:hover {
  background: #7a63d4;
  color: #fff;
}

.btn-explore {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 24px;
  transition: background 0.2s;
}
.btn-explore:hover {
  background: #7a63d4;
  color: #fff;
}

/* ── HERO ── */
.hero-section {
  position: relative;
  padding: 90px 0 0;
  overflow: hidden;
  background: #fff;
  text-align: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  height: 800px;
  background: radial-gradient(
    ellipse at center,
    rgba(168, 141, 255, 0.42) 0%,
    rgba(193, 172, 255, 0.25) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-section h1 {
  font-weight: 600;
  font-size: 50px;
  line-height: 1.4;
  color: var(--text-dark);
}
.hero-section .lead {
  font-size: 15px;
  color: var(--text-dark);
}
.hero-lead {
  max-width: 765px;
}
.hero-img-wrap {
  position: relative;
  z-index: 1;
  border-radius: 45px;
  overflow: hidden;
  margin-top: 120px;
  max-width: 960px;
}
.hero-img-wrap img,
.hero-img-wrap .hero-ph {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 45px;
  background: #111827;
  display: block;
}

/* ── LOGOS SLIDER ── */
.logos-section {
  padding: 130px 0 80px;
}
.logos-track-wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 70px;
}
/* .logos-track-wrapper::before,
.logos-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logos-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.logos-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
} */
.logos-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logos-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
.logo-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 130px;
  height: 100%;
}

.logo-item img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  /* filter: grayscale(1) contrast(80%);
  transition: all 0.25s ease; */
}

/* ── STATS ── */
.stat-box {
  background:
    linear-gradient(white, white) padding-box,
    radial-gradient(circle at 0% 0%, #ecdbff, #f9f3ff, #e1ceff) border-box;
  border: 2px solid transparent;
  border-radius: 65px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
/* .stat-box:hover {
  box-shadow: 0 10px 32px rgba(139, 116, 231, 0.15);
  transform: translateY(-4px);
} */
.stat-icon {
  width: 100px;
  height: auto;
}
.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stat-num {
  font-weight: 600;
  font-size: 40px;
  color: var(--text-black);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--text-black);
  font-weight: 300;
}

/* ── PURPLE SECTION ── */
.purple-section {
  background: var(--purple-section);
  padding: 130px 0;
}
.about-img-box {
  background: linear-gradient(135deg, #ede6ff 0%, #d8cefc 50%, #cec4f0 100%);
  border-radius: 65px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  height: 290px;
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-img-box {
  background: linear-gradient(135deg, #ece6ff 0%, #ddd6fb 50%, #d0c8f0 100%);
  border-radius: 65px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  height: 270px;
}
.why-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.purple-section h2 {
  font-weight: 600;
  font-size: 40px;
  color: #fff;
  text-align: center;
}
.purple-section p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
  text-align: justify;
  max-width: 410px;
  margin: auto;
}

/* ── SERVICE SEGMENT ── */
.service-banner {
  width: 100%;
  height: 310px;
  background: #cdc3f5;
  border-radius: 28px;
  overflow: hidden;
}
.service-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-card {
  background: #fff;
  /* border: 1.5px solid #ece8fc; */
  border-radius: 45px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
/* .svc-card:first-child {
  background: linear-gradient(160deg, #f4f0ff 0%, #ebe4fc 100%);
} */
.svc-card:hover {
  box-shadow: 0 10px 32px rgba(139, 116, 231, 0.15);
  background: radial-gradient(circle at 50% 50%, #f9f4ff, #f9f3ff, #efe5ff);
  transform: translateY(-4px);
}
.svc-name {
  font-family: var(--font-q);
  font-size: 20px;
}
.svc-name.scale {
  color: #3b82f6;
}
.svc-name.cxas {
  color: #f59e0b;
}
.svc-name.core {
  color: #ef4444;
}
.svc-name.ava {
  color: #eab308;
}
.svc-card p {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
}

/* ── REVENUE ENGINE ── */
.revenue-section {
  padding: 100px 0;
}
.rev-stagger {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 50px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.rev-stagger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    ellipse at center,
    rgba(168, 141, 255, 0.35) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}
.rev-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.rev-col--left {
  padding-top: 120px;
}
.rev-col--right {
  padding-top: 120px;
}
.rev-card {
  background: radial-gradient(circle at 50% 50%, #f9f4ff, #f9f3ff, #efe5ff);
  border-radius: 45px;
  box-shadow: 0 4px 20px rgba(139, 116, 231, 0.09);
  padding: 50px 40px;
}
.rev-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}
.rev-num {
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}
.rev-num.big {
  font-size: 100px;
}
.rev-num.med {
  font-size: 100px;
}
.rev-num.sm {
  font-size: 65px;
}
.rev-num .pct {
  font-size: 50%;
}
.rev-sub {
  font-size: 13px;
  color: var(--text-dark);
}
.rev-sub.accent {
  color: var(--purple);
  font-weight: 700;
  font-size: 18px;
}
.sub-last {
  font-size: 14px !important;
}
.badge-white {
  display: inline-block;
  background: #fff;
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: center;
}
.rev-card-note {
  font-size: 13px;
}
.rev-card-muted {
  font-size: 13px;
  color: var(--text-dark);
}

@media (max-width: 767px) {
  .rev-stagger {
    grid-template-columns: 1fr;
  }
  .rev-col--left,
  .rev-col--right {
    padding-top: 0;
  }
}

/* ── WHO WE SERVE ── */
.serve-card {
  position: relative;
  border-radius: 45px;
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-color: #c8d8e8;
  transition: transform 0.25s;
}

.serve-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 16px 13px;
  background: linear-gradient(
    to top,
    rgba(30, 20, 60, 0.72) 0%,
    transparent 100%
  );
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/* Serve card background images */
.serve-card--banking {
  background-image: url("https://picsum.photos/seed/banking/600/400");
}
.serve-card--healthcare {
  background-image: url("https://picsum.photos/seed/healthcare/600/400");
}
.serve-card--travel {
  background-image: url("https://picsum.photos/seed/travel/600/400");
}
.serve-card--retail {
  background-image: url("https://picsum.photos/seed/retail/600/400");
}
.serve-card--technology {
  background-image: url("https://picsum.photos/seed/technology/600/400");
}
.serve-card--logistics {
  background-image: url("https://picsum.photos/seed/logistics/600/400");
}
.serve-card--media {
  background-image: url("https://picsum.photos/seed/media/600/400");
}
.serve-card--education {
  background-image: url("https://picsum.photos/seed/education/600/400");
}
.serve-card--government {
  background-image: url("https://picsum.photos/seed/government/600/400");
}

/* ── COMMITMENT ── */
.commit-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.commit-card-box {
  background: var(--purple-light-bg);
  border-radius: 45px;
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1; /* ← fills remaining height equally across all cards */
}
.commit-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #6c56c4;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.4;
}
.commit-icon-wrap {
  width: 100%;
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commit-icon-wrap img {
  width: 100px;
  height: auto;
  object-fit: contain;
}
.commit-desc {
  font-size: 14px;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.65;
  margin-top: 19px;
}
.commit-title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* ── NEWS ── */
.news-thumb {
  width: 100%;
  height: 210px;
  background: var(--purple);
  border-radius: 45px;
}
.news-tag {
  font-size: 13px;
  color: var(--purple);
}
.news-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  padding: 0 20px;
}

/* ── CTA ── */
.cta-wrap {
  padding: 100px 0;
  background: linear-gradient(to bottom, #fff 0%, #ece7ff 100%);
}
.cta-box {
  background: radial-gradient(circle at 50% 50%, #f9f4ff, #f9f3ff, #efe5ff);
  border-radius: 45px;
}
.cta-box h2 {
  font-weight: 600;
  font-size: 50px;
  color: #5a45ac;
  line-height: 1.4;
}
.cta-box p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.4;
  max-width: 400px;
}
.cta-input {
  border: none;
  border-radius: 19px;
  padding: 20px 22px;
  font-size: 16px;
  color: var(--purple);
  font-family: var(--font);
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(139, 116, 231, 0.1);
  outline: none;
}
.cta-input::placeholder {
  color: var(--purple);
}

/* ── CTA TAIL ── */
/* .cta-tail {
  height: 90px;
  background: linear-gradient(to bottom, #ece7ff, #c8b8ee);
} */

/* ── FOOTER ── */
.site-footer {
  background: var(--purple);
}
.site-footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

/* ── SECTION HEADINGS ── */
.section-title {
  font-weight: 600;
  font-size: 35px;
  line-height: 1.4;
  color: var(--text-dark);
}
.section-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
}
