:root {
  --text-black: #000000;
  --text-white: #ffffff;
  --text-gray: #6b6b78;
  --bg-white: #ffffff;
  --bg-black: #000000;
  --violet-bright: #8b3ff0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* no overflow-x here */
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-black);
  background: var(--bg-white);
  position: relative;
  overflow-x: hidden;   /* only here, nowhere else */
}

a {
  text-decoration: none;
}
img{
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6, p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ---------- Navbar ---------- */
.main-nav .nav-link {
  color: rgba(255, 255, 255, .72);
  font-weight: 500;
  font-size: 14px;
  padding: .5rem 1rem;
}

.main-nav .nav-link.active {
  color: #7C33FF;
}

.main-nav .nav-link:hover {
  color: #7C33FF;
}

/* ---------- Main Banner -----------*/
.hero-wrap {
  position: relative;
  background: linear-gradient(0deg, #FFFFFF 0%, #7C33FF 36%, #030303 91%);
  color: #fff;
  padding: 0rem 1rem 4.5rem 1rem;
}

.hero-top {
  padding-top: 1.6rem;
}

.banner-text {
  padding-top: 4.2rem;
}

.banner-text h1 {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.1rem;
  color: #ffffff;
}

.banner-text p {
  color: #D7D7D7;
  font-size: 16px;
  max-width: 540px;
  padding-bottom: 10rem;
}

/* ---------- Who We Are ---------- */
.who-we-are {
  padding-top: 5rem;
  position: relative;
}

.who-we-are h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 1.1rem;
}

.who-we-are p {
  color: #fff;
  margin-bottom: 2.2rem;
}

.count-box {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  backdrop-filter: blur(6px);
  min-width: 190px;
}

.count-box .num {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
}

.count-box .label {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, .75);
}


/* ---------- Buttons ---------- */
.btn-theme {
  border-radius: 50px;
  padding: .7rem 1.6rem;
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.btn-theme .icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.btn-theme:hover .icon-circle {
  transform: rotate(-45deg);
}

.btn-light-theme {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-light-theme .icon-circle {
  background: #ffffff00;
  border: 1px solid #fff;
}

.btn-light-theme:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.btn-dark-theme {
  background: var(--bg-black);
  color: #fff;
}

.btn-dark-theme .icon-circle {
  background: var(--violet-bright);
  color: #fff;
}

.btn-dark-theme:hover {
  background: #000;
  color: #fff;
}


.link-arrow {
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: inherit;
  opacity: .85;
  color: #6A6A6A;
}

.link-arrow:hover {
  opacity: 1;
}

/* ---------- Trusted partners ---------- */
.partners-section {
  padding: 0px 0px 4.5rem 0;
}

.section-trust-title {
  /* padding: 0 12px; */
  font-size: 36px;
  font-weight: 400;
}

.partner_line {
  color: #D8D8D8;
}

.partner-card {
  background: #f4f3f7;
  min-height: 192px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: #2b2b33;
  /* margin: 0 12px; */
  transition: transform .2s ease, box-shadow .2s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
}

/* ---------- Capabilities ---------- */
.capabilities-section {
  padding: 1rem 0 5rem;
}

.section-capa-title {
  /* padding: 0 12px; */
  font-size: 36px;
  font-weight: 400;
}

.cap-card {
  border-radius: 20px;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: .85rem;
  background: #fff;
  border: 1px solid #ece9f2;
  box-shadow: 0 18px 40px -22px rgba(20, 15, 40, .18);
  padding: .85rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px -20px rgba(20, 15, 40, .28);
}

.cap-card .cap-left {
  flex: 0 0 42%;
  display: flex;
   min-width: 0; 
  flex-direction: column;
  justify-content: space-between;
  padding: .6rem .35rem .5rem .5rem;
}

.cap-card .cap-left h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.28;
}

.cap-card .cap-right {
  flex: 1;
  background: linear-gradient(90deg, #1E1D19 0%, #1E1D19 100%);
  color: rgba(255, 255, 255, .82);
  border-radius: 14px;
  padding: 1.15rem 1rem;
  display: flex;
  align-items: flex-start;
}

.cap-card .cap-right p {
  font-size: .78rem;
  line-height: 1.55;
  margin-bottom: 10px;
  color: #ffffff;
}

.cap-btn {
  border-radius: 50px;
  padding: .5rem .35rem .5rem .9rem;
  font-weight: 600;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  width: fit-content;
  background: #fff;
  color: var(--text-black);
  border: 1px solid #e4e1ec;
  box-shadow: 0 6px 16px -8px rgba(20, 15, 40, .25);
  transition: background .25s ease, transform .25s ease;
}

.cap-btn .icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  transition: transform .25s ease;
}

.cap-btn:hover {
  background: var(--bg-black);
  color: #fff;
}

.cap-btn:hover .icon-circle {
  background: #fff;
  color: var(--text-black);
  transform: rotate(-45deg);
}

/* ---------- What's New ---------- */
.whatsnew-section {
  background: #070707;
  color: #fff;
  padding: 5rem 0;
}

.section-whats-title {
  font-size: 36px;
  font-weight: 400;
}

.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 830 / 701;
}

.portfolio-card .portfolio-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio-card .portfolio-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portfolio-card:hover .portfolio-bg {
  transform: scale(1.06);
  transition: transform .6s ease;
}

.portfolio-card .portfolio-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.8rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
}

.portfolio-card:hover .portfolio-text {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card .tag {
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  margin-bottom: .4rem;
}

.portfolio-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.78) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}

.portfolio-card:hover::after {
  opacity: 1;
}


/* ---------- Testimonials ---------- */
.testimonial-section {
  padding: 5.5rem 0;
}

.testimonial-row {
  display: flex;
  gap: 1.1rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.testimonial-combo {
  display: flex;
  flex: 1 1 100%;
  background: #f7f6fa;
  border-radius: 20px;
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(20, 15, 40, 0.12);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 0;
  padding: 1.9rem 2rem;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  flex: 1.2 1 0%;
}

.testimonial-card .t-eyebrow {
  font-size: .85rem;
  font-weight: 500;
  color: #4A4949;
  margin-bottom: 1rem;
}

.testimonial-card .quote-mark {
  font-size: 1rem;
  color: #9a97a6;
  line-height: 1;
  margin-right: .15rem;
}

.testimonial-card .role {
  color: #828282;
  font-size: .83rem;
}

.testimonial-card .t-body {
  transition: opacity .35s ease, transform .35s ease;
}

.testimonial-card .t-body p {
  font-size: .9rem;
  line-height: 1.65;
  color: #828282;
}

.testimonial-card .t-body.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.client-avatar {
  cursor: pointer;
  position: relative;
  flex: 1 1 calc(50% - .55rem);
  min-height: 170px;
  border-radius: 20px;
  min-width: 0;
  overflow: hidden;
  outline: 3px solid transparent;
  outline-offset: 3px;
  transition: transform .25s ease, outline-color .25s ease, box-shadow .25s ease;
}

.client-avatar:hover {
  transform: translateY(-4px);
}

.client-avatar:not(.a1)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 8, 22, .32) 0%, rgb(8 6 16) 100%);
  pointer-events: none;
}

.client-avatar.a1 {
  flex: 1 1 0%;
  border-radius: 0;
  min-height: 0;
  border-radius: 20px;
}

.client-avatar.a1:hover {
  transform: none;
}

/* sliding inner face: carries the person's photo/colour + initials,
     swapped and animated whenever the rotation advances */
.avatar-face {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: rgba(255, 255, 255, .9);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding-bottom: .9rem;
  transform: translateX(0);
  opacity: 1;
}

.avatar-face img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

}

.person-bj {
  background: linear-gradient(160deg, #5b6f9e, #1e2749);
}

.person-sr {
  background: linear-gradient(160deg, #b48a6b, #3b241a);
}

.person-ak {
  background: linear-gradient(160deg, #7c9e8a, #233127);
}

.person-mt {
  background: linear-gradient(160deg, #9a8bc4, #2a2148);
}

@media (min-width: 992px) {
  .testimonial-row {
    height: 370px;
    flex-wrap: nowrap;
  }

  .testimonial-combo {
    flex: 2.5 1 0%;
    height: 100%;
  }

  .client-avatar {
    flex: 1 1 0%;
    height: 100%;
    min-height: 0;
  }

  .client-avatar.a1 {
    flex: 1 1 0%;
    height: 100%;
  }
}


/* logo brands */
.logo-strip {
  padding: 2.6rem 0 3rem;
  overflow: hidden;
}

.logo-track-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  margin-bottom: 1.1rem;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: max-content;
  animation: marquee-left 28s linear infinite;
}

.logo-track.reverse {
  animation: marquee-right 28s linear infinite;
}

.logo-strip:hover .logo-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.logo-brand {
  flex: 0 0 auto;
  width: 150px;
  height: 78px;
  border-radius: 14px;
  background: #f4f3f7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: #9a97a6;
  font-weight: 700;
  font-size: .92rem;
  filter: grayscale(1);
  opacity: .8;
  transform: scale(1);
  transition: filter .35s ease, opacity .35s ease, transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.logo-brand img {
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
}

.logo-brand i {
  font-size: 1.15rem;
}

.logo-brand:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-4px) scale(1.06);
  background: #fff;
  color: var(--violet-bright);
  box-shadow: 0 16px 30px -14px rgba(109, 40, 217, .35);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-black);
  color: #fff;
}

.cta-band {
  padding: 5rem 0 2rem;
}

.cta-band h2 {
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 2rem;
}

.footer-cols h6 {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  margin-bottom: 2rem;
}

.footer-cols .contact-line {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: .6rem;
}

.footer-cols .contact-line a {
  color: #fff;
  transition: color .25s ease;
}

.footer-cols .foot-link {
  display: block;
  color: #fff;
  font-size: 12px;
  margin-bottom: .65rem;
}

.footer-cols .foot-link:hover {
  color: #fff;
}

.footer-countries {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  font-size: 12px;
  color: #fff;
  padding: 1.6rem 0;
}

.footer-bottom {
  padding: 1.6rem 0 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-icons a {
  color: #fff;
  margin-left: 1.1rem;
  font-size: 12px;
}

.social-icons a:hover {
  color: #fff;
}


/* whatsapp button */

.whatsapp-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  z-index: 1050;
  transition: transform .2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  color: #fff;
}


/* responsive  */

@media (max-width: 991px) {
  .banner-text h1 {
    font-size: 44px;
  }

  .partner-card {
    min-height: 160px;
    padding: 1rem;
  }

  .capabilities-section {
    padding-top: .5rem;
    padding-bottom: 4rem;
  }

  .cta-band h2 {
    font-size: 34px;
  }

  .cap-card {
    min-height: 220px;
  }

  .whatsnew-section,
  .testimonial-section {
    padding: 4rem 0;
  }

  .client-avatar {
    flex: 1 1 calc(33.333% - .75rem);
    min-height: 220px;
  }

}

/* Mobile */
@media (max-width: 580px) {

  .banner-text {
    padding-top: 3rem;
  }

  .banner-text h1 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 1rem;
  }

  .banner-text p {
    font-size: 15px;
  }

  .btn-theme {
    padding: .65rem 1.15rem;
    font-size: 14px;
  }

  .who-we-are {
    padding-top: 3rem;
  }

  .who-we-are h2,
  .section-trust-title,
  .section-capa-title,
  .section-whats-title {
    font-size: 30px;
  }

  .who-we-are p {
    font-size: 15px;
  }

  .who-we-are .d-flex {
    gap: .7rem !important;
    margin-bottom: 2rem !important;
  }

  .count-box {
    flex: 1 1 calc(50% - .35rem);
    min-width: 0;
    padding: .85rem .75rem;
    gap: .55rem;
    border-radius: 13px;
  }

  .count-box .num {
    font-size: 24px;
  }

  .count-box .label {
    font-size: 12px;
  }

  .partners-section {
    padding: 2.5rem .75rem 3rem;
  }

  .partner-card {
    min-height: 167px;
    border-radius: 13px;
    padding: 1rem;
  }

  .capabilities-section {
    padding: .5rem .75rem 3.5rem;
  }

  .link-arrow {
    font-size: 13px;
  }

  .whatsnew-section {
    padding: 3.25rem .75rem;
  }

  .portfolio-card {
    border-radius: 15px;
  }

 .portfolio-bg {
    aspect-ratio: 4 / 3;
  }

  .portfolio-card h4 {
    font-size: 18px;
  }

  .testimonial-section {
    padding: 3.5rem .75rem;
  }

  .testimonial-combo {
    flex-direction: column;
  }

  .testimonial-card {
    min-height: 250px;
  }

  .client-avatar.a1 {
    width: 100%;
    height: 300px;
    min-height: 0;
    flex: none;
    border-radius: 16px;
    overflow: hidden;
  }

  .client-avatar.a1 .avatar-face,
  .client-avatar.a1 .avatar-face img {
    width: 100%;
    height: 100%;
  }

  .client-avatar.a1 .avatar-face img {
    object-fit: cover;
    object-position: center top;
  }

  .testimonial-row>.client-avatar:not(.a1) {
    min-height: 120px;
  }

  .logo-strip {
    padding: 1.8rem 0 2.2rem;
  }

  .logo-track-row {
    margin-bottom: .75rem;
  }

  .logo-track {
    gap: .7rem;
  }

  .logo-brand {
    width: 110px;
    height: 62px;
    border-radius: 11px;
  }

  .logo-brand img {
    max-width: 55%;
    max-height: 55%;
  }

  .footer {
    padding: 0 .75rem;
  }

  .cta-band {
    padding: 3.5rem 0 1.75rem;
  }

  .cta-band h2 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .footer-cols h6 {
    margin-bottom: 1rem;
  }

  .footer-countries {
    gap: .8rem 1.2rem;
    padding: 1.4rem 0;
    line-height: 1.4;
  }

  .footer-bottom {
    padding: 1.25rem 0 1.75rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1rem;
  }

  .social-icons a {
    margin-left: 0;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}