:root {
  --b-bg: #0b0f14;
  --b-card: #10151b;
  --b-line: #1f2732;
  --b-text: #aab3c2;
  --b-white: #ffffff;
  --b-primary: #1e66ff;
  --b-grad: radial-gradient(
      900px 600px at 15% 10%,
      rgba(30, 102, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(180deg, #0c1218 0%, #0b0f14 100%);
  --secondary: #3a0ca3;
  --accent: #4cc9f0;
  --dark: #11151b;
  --light: #f8f9fa;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --blue: #1e66ff;
  --dark: #000;
  --text-border: #fff;
}

/* banner section */
.container {
  max-width: 1200px;
}

/* ===== Hero Banner ===== */
.hero_banner {
  position: relative;

  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 3rem 0 2rem;
  /* margin-top: -80px; */
}

.hero_banner .hero_banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero_banner .hero_banner-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: brightness(0.55) contrast(1.03) saturate(1.1);
}

.hero_banner .hero_banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1200px 600px at 20% 40%,
      rgba(2, 29, 128, 0.45),
      transparent 60%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.15) 55%,
      rgba(0, 0, 0, 0) 100%
    );
  z-index: 1;
}

.hero_banner .container {
  position: relative;
  z-index: 2;
}

/* left content */
.hero_banner .hero_banner-left h1 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1rem;
  font-size: 3rem;
}

@media (min-width: 1200px) {
  .hero_banner .hero_banner-left h1 {
    font-size: 3.75rem;
  }
}

.hero_banner .hero_banner-left .hero_banner-sub {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 46rem;
}

.hero_banner-logos {
  margin-top: 3rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero_banner-logos::before,
.hero_banner-logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero_banner-logos::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.hero_banner-logos::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

/* inner track for sliding */
.hero_banner-logos-track {
  display: flex;
  width: max-content;
  animation: slide 20s linear infinite;
}

.hero_banner-logos:hover .hero_banner-logos-track {
  animation-play-state: paused;
}

.hero_banner-logos img {
  width: 70px;
  height: auto;
  margin: 0 15px 0 15px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* right form card */
.hero_banner .hero_banner-form {
  background: #fff;
  color: #111;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  padding: 26px 26px 18px;
}

@media (min-width: 992px) {
  .hero_banner .hero_banner-form {
    padding: 28px;
  }
}

.hero_banner .hero_banner-form .hero_banner-formhead {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero_banner .form-control,
.hero_banner select.form-control {
  height: 48px;
  border-radius: 0.5rem;
  border: 1px solid #e3e7ef;
  background: #f7f9fc;
  transition: 0.2s;
  box-shadow: none;
}

.hero_banner textarea.form-control {
  height: auto;
  padding-top: 0.75rem;
}

.hero_banner .form-control:focus {
  border-color: #01b2ff;
  background: #fff;
  box-shadow: 0 0 0 0.15rem rgba(1, 178, 255, 0.15);
}

/* captcha + submit */
.hero_banner .hero_banner-captcha {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero_banner .hero_banner-captcha .hero_banner-captxt {
  font-weight: 600;
  color: #1b2430;
}

.hero_banner .hero_banner-captcha input {
  width: 110px;
  text-align: center;
}

.hero_banner .hero_banner-submit .btn {
  height: 48px;
  border-radius: 0.6rem;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.hero_banner .hero_banner-submit .btn svg {
  margin-left: 0.35rem;
}

/* bullets */
.hero_banner .hero_banner-bullets {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: #465065;
}

.hero_banner .hero_banner-bullets li {
  margin: 0.25rem 0;
}

/* spacing on small screens */
@media (max-width: 991.98px) {
  .hero_banner {
    padding: 64px 0 40px;
    min-height: auto;
  }

  .hero_banner .hero_banner-form {
    margin-top: 28px;
  }

  .hero_banner .hero_banner-logos img {
    height: 28px;
    margin-right: 18px;
  }
}
/* banner section */

/* ===== CLIENT SECTION (scoped) ===== */
.client-section {
  background: #000;
  color: #0b172a;
  padding: 3rem 0 1rem 0;
}

.client-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.client-headline {
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0 0 28px;
}

.client-viewport {
  overflow: hidden;
  position: relative;
}

.client-track {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 12px 8px;
  transition: transform 0.55s cubic-bezier(0.22, 0.7, 0.23, 1);
  will-change: transform;
}

.client-card {
  min-width: calc((100% - 56px) / 3);
  /* 3-up desktop */
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e6ecf5;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
  padding: 22px 22px 18px;
  color: #20324a;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
}

.client-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.client-name {
  margin: 0;
  font-weight: 600;
  font-size: 1.3rem;
  color: #12243c;
  letter-spacing: 0.2px;
}

.client-role {
  margin: 2px 0 0;
  color: #5d7493;
  font-weight: 600;
}

.client-quote {
  margin: 8px 0 14px;
  line-height: 1.7;
  color: #2b3f5a;
}

.client-stars {
  letter-spacing: 2px;
  color: #f5a300;
  font-size: 20px;
}

/* Nav buttons */
.client-nav {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  color: #12243c;
  font-size: 28px;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.client-prev {
  left: 0;
}

.client-next {
  right: 0;
}

.client-nav:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
  background: #f7fbff;
}

/* Responsive */
@media (max-width: 1024px) {
  .client-card {
    min-width: calc((100% - 28px) / 2);
  }

  /* 2-up */
}

@media (max-width: 640px) {
  .client-card {
    min-width: 100%;
  }

  /* 1-up */
  .client-nav {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }
}

/* ===== CLIENT SECTION (scoped) ===== */

/* faq section */

.ai-faq-section {
  background: #0b0f19;
  /* dark band (adjust as needed) */
  color: #e5e7eb;

  padding: 3rem 0;
}

.ai-faq-title {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Items */
.ai-faq-item {
  background: rgb(27, 27, 27);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-bottom: 1.3rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Question button */
.ai-faq-question {
  margin: 0;
}

.ai-faq-toggle {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: #e5e7eb;
  font: 600 16px/1.3 Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  padding: 16px 48px 16px 16px;
  position: relative;
  cursor: pointer;
}

.ai-faq-toggle:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.35);
  border-radius: 10px;
}

/* Plus/Minus icon */
.ai-faq-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.ai-faq-icon:before,
.ai-faq-icon:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 2px;
  background: #cde7ff;
  border-radius: 2px;
}

.ai-faq-toggle[aria-expanded="false"] .ai-faq-icon:after {
  /* vertical bar (plus) */
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Answer (animated height) */
.ai-faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  background: #0f1422;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-faq-answer p {
  margin: 0;
  padding: 14px 16px;
  color: #fff;
  line-height: 1.6;
  font-size: 15px;
}

.ai_fa_box {
  position: sticky;
  top: 7rem;
  border: solid 3px transparent;
  background-image: linear-gradient(rgb(27, 27, 27), rgb(27, 27, 27)),
    linear-gradient(
      55.35deg,
      #398bff 0.36%,
      #292629 19.28%,
      #292629 50.3%,
      #292629 79.03%,
      #398bff 99.14%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
  /* background-color: rgb(27, 27, 27);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(91, 91, 91); */
  border-image: initial;
  border-radius: 12px;
}
.ai_fa_box_inner {
  padding: 30px;
}
.ai_fa_box h4 {
  text-align: start;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.ai_fa_box button {
  background-color: #1163fb;
  color: rgb(255, 255, 255);
  border-width: 2px;
  border-style: solid;
  border-color: #1163fb;
  cursor: pointer;

  padding: 10px 1.6rem;
  border-radius: 5px;
}

.ai_fa_box img {
  width: 130px;
  height: auto;
  margin-bottom: 1rem;
}

/* ai faq section end */

/* ==== WHY CHOOSE US ==== */
.why-choose-us {
  padding: 2rem 0;
  background: #fff;
}

.wcu-heading {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
}

.wcu-heading span {
  color: #1163fb;
}

.wcu-sub {
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 1.05rem;
  color: #000;
}

.wcu-box {
  background: radial-gradient(
      900px 600px at 15% 10%,
      rgba(30, 102, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(180deg, #0c1218 0%, #0b0f14 100%);
  border: 1px solid #1f2024;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: 0.1s ease-in-out;
  height: 100%;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.wcu-box:hover {
  background: #1163fb;
  color: #fff;
  border: none;
}
.wcu-box:hover p {
  color: #fff;
}
.wcu-icon {
  font-size: 36px;
  margin-bottom: 14px;
  color: #1163fb;
}
.wcu-icon img {
  width: 40px;
  height: 40px;
  filter: invert(1);
}
.wcu-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.wcu-box p {
  font-size: 0.95rem;
  color: #c7c9d1;
  line-height: 1.6;
}

/* ==== WHY CHOOSE US end ==== */

/* industries satrt */

.wdp-section {
  background: #000;
  padding: 2rem 0 3rem 0;
  color: #e9ecf1;
}

.wdp-steps::-webkit-scrollbar {
  width: 8px;
  border-radius: 10px;
}

/* Track */
.wdp-steps::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.wdp-steps::-webkit-scrollbar-thumb {
  background: #f5f5f5;
  border-radius: 10px;
}

.wdp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
}

.wdp-section-head {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  margin-bottom: 2rem;
}

.wdp-section-head h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.wdp-section-head p {
  text-align: center;
  color: #fff;
  /* margin-bottom: 3rem; */
}

.wdp-steps {
  overflow-y: auto;
  height: 500px;
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wdp-step {
  display: grid;
  grid-template-columns: 64px 1fr 40px;
  align-items: center;
  gap: 1px;
  padding: 10px;
  background: #0e0f12;
  border: 1px solid #212329;
  color: #cfd6e3;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease;
  margin-bottom: 2px;
}

.wdp-step:hover {
  background: #13151a;
  border-color: #2a2e36;
}

.wdp-step .wdp-no {
  width: 56px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  background: #101214;
}
.wdp-no img {
  width: 25px;
  height: auto;
}

.wdp-step .wdp-title {
  text-align: start;
  font-weight: 600;
  font-size: 1.2rem;
  color: #e8eef7;
}

.wdp-step .wdp-arrow {
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #9fb2c8;
}

/* Active state */
.wdp-step.is-active {
  background: #1163fb;
  border-color: #1163fb;
  color: #0a251a;
}

.wdp-step.is-active .wdp-no {
  background: #1e355f9c;
  color: #fff;
}

.wdp-step.is-active .wdp-title {
  color: #fff;
}

.wdp-step.is-active .wdp-arrow {
  color: #0a251a;
  font-weight: 600;
}

/* Right panel */
.wdp-view {
  /* overflow-y: auto;
  height: 400px; */
  flex: 1;
}

.wdp-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0f1115;
}

.wdp-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Overlay caption like screenshot (rounded, soft gradient) */
.wdp-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  background: #1163fba3;
  color: #fff;
  border-radius: 10px;
  padding: 1.1rem;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.25;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 1080px) {
  .wdp-wrap {
    flex-direction: column;
  }

  .wdp-steps {
    flex-basis: auto;
  }

  .wdp-image img {
    height: 420px;
  }

  .wdp-caption {
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  .wdp-step {
    grid-template-columns: 56px 1fr 32px;
    padding: 14px;
  }

  .wdp-step .wdp-no {
    width: 50px;
    height: 44px;
  }

  .wdp-image img {
    height: 340px;
  }
}

/* industries end */

/* benefits section */

.benefits_wrap {
  background: var(--b-grad);
  color: var(--b-white);
  padding: 64px 16px;
}

.benefits_head {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin-bottom: 28px;
}

.benefits_head h3 {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin: 0 0 0.4rem;
}

.benefits_head p {
  color: var(--b-text);
  margin: 0;
}

.benefits_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.benefit_card {
  position: relative;
  border: 1px solid var(--b-line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0)
  );
  border-radius: 16px;
  padding: 22px 18px;
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.benefit_card::after {
  content: "";
  position: absolute;
  inset: -30% -30% auto auto;
  height: 120px;
  width: 120px;
  background: radial-gradient(
    closest-side,
    rgba(30, 102, 255, 0.25),
    transparent 70%
  );
  transform: translate(20px, -20px) scale(0.6);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.benefit_card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 102, 255, 0.55);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.benefit_card:hover::after {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.benefit_icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(30, 102, 255, 0.12);
  color: var(--b-primary);
  margin-bottom: 14px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.benefit_icon img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}
.benefit_card:hover .benefit_icon {
  background: rgba(30, 102, 255, 0.2);
  transform: scale(1.04);
}

.benefit_card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 2px 0 6px;
}

.benefit_card p {
  color: var(--b-text);
  margin: 0;
  line-height: 1.7;
}

/* 3x3 on desktop, 2x? on tablet, 1x on mobile */
@media (max-width: 991px) {
  .benefits_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .benefits_grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Process Section ===== */
.process-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f6f9ff, #eef3ff);
}

.process-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
}

.process-subtitle {
  max-width: 1000px;
  margin: 0 auto;
  color: #555;
}

/* Process Cards */
.process-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.process-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Process Icon */
.process-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e66ff, #4facfe);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  position: relative;
}

.process-icon img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

.process-icon::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px dashed #1e66ff;
  border-radius: 50%;
  top: -10px;
  left: -10px;
  animation: spin 12s linear infinite;
  opacity: 0.25;
}

/* Animations */
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.process-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.process-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* process section end */

/* services section start */

.services-section {
  background: #fff;
  color: #11151b;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  position: relative;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
  font-size: 2.5rem;
  display: inline-block;
}

.section-title p {
  color: #a0aec0;
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(17, 21, 27, 0.9);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(67, 97, 238, 0.15);
  border-color: rgba(67, 97, 238, 0.3);
  background: #fff;
}
.service-card:hover .service-content h2,
.service-card:hover .service-content p {
  color: #000;
}
.service-icon {
  width: 75px;
  margin-top: 1.5rem !important;
  margin: 0 auto;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-bg1 {
  background: #1e66ff;
}

.service-bg2 {
  background: #ff5722;
}

.service-bg3 {
  background: #4caf50;
}

.service-bg4 {
  background: #ff9800;
}

.service-bg5 {
  background: #9c27b0;
}

.service-bg6 {
  background: #009688;
}

.service-bg7 {
  background: #3f51b5;
}

.service-bg8 {
  background: #e91e63;
}

.service-bg9 {
  background: #607d8b;
}

.service-icon img {
  max-height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.service-content {
  padding: 1.5rem;
}

.service-content h2 {
  font-weight: 500;
  margin-bottom: 1rem;
  color: white;
  text-align: center;
  font-size: 1.3rem;
}

.service-content p {
  color: #a0aec0;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 0;
}
.cta_btn {
  cursor: pointer;
  background: var(--gradient);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 500;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.cta_btn2 {
  cursor: pointer;
  background: var(--gradient);
  border: none;
  border-radius: 10px;
  padding: 10px 1.8rem;
  font-weight: 500;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.1s ease-in-out;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}
.cta_btn2:hover {
  text-decoration: none;
  background: #000;
  color: #fff;
}
.cta_btn:hover {
  text-decoration: none;
  background: #fff;
  color: #000;
}
.btn-primary {
  background: var(--gradient);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .service-card {
    margin-bottom: 2rem;
  }
}
/* service section end */

/* cta section */
.partner_cta {
  background: linear-gradient(rgba(6, 6, 223, 0.58), rgba(2, 7, 54, 0.75)) top
      center / cover,
    url(../images/website-dev/cta-bg2.avif);
  background-size: cover;
  background-position: center bottom;
  padding: 10rem 0 8rem;
  background-attachment: fixed;
  /* height: 482px; */
  text-align: center;
  position: relative;
}

.partner_cta_cont {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0 15px;
  width: 100%;
  max-width: 1160px;
  transform: translate(-50%, -50%);
}

.partner_cta h3 {
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
}

.partner_cta button {
  padding: 10px 2rem;
  background: #1163fb;
  color: #fff;
  font-size: 1.1rem;
  border: 0;
  transition: 0.5s ease-in-out;
  border-radius: 0 1.5rem;
}

.partner_cta button:hover {
  /* border: 1px solid #1163fb; */
  color: #1163fb;
  background: #fff;
}
/* partner cta section end*/
/* key_features_sec start */

.key_features_sec {
  background: linear-gradient(rgb(0 0 0), rgb(1 23 102 / 69%)) top center /
      cover,
    url(../images/website-dev/key-features-bg.jpg);
  padding: 2rem 0;
  text-align: center;
}

.key_features_sec h2 {
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 500;
  font-size: 2.5rem;
}

.key_features_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* ✅ Always 6 equal columns */
  gap: 0;
  border: 1px solid #ffffff42;
}

/* Make it wrap into fewer columns on smaller screens for responsiveness */
@media (max-width: 992px) {
  .key_features_grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns on tablets */
  }
}

@media (max-width: 576px) {
  .key_features_grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on phones */
  }
}

.key_features_item {
  border-right: 1px solid #ffffff42;
  /* border-bottom: 1px solid #ffffff42; */
  padding: 3rem 1rem;
  color: var(--text-border);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* adjust for grid edges if needed */
.key_features_icon {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.key_features_icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: #1e66ff;
}

.key_features_icon img {
  width: 30px;

  height: 30px;
  filter: invert(1);
}

.key_features_item p {
  font-weight: 500;
  line-height: 1.4;
  /* max-width: 180px; */
  margin: 0 auto;
}

.key_features_item:hover {
  border-radius: 20px;
  background: var(--blue);
  transform: scale(1.05);
}

.key_features_item:hover .key_features_icon {
  background-color: #fff;
}

.key_features_item:hover .key_features_icon img {
  filter: contrast(1);
}

.key_features_item:hover .key_features_icon {
  color: #fff;
  transform: scale(1.2);
}

.key_features_item:hover p,
.key_features_item.is-active p {
  color: #fff;
}

@media (max-width: 767px) {
  .key_features_item {
    padding: 30px 15px;
  }

  .key_features_icon {
    font-size: 28px;
  }
}

/* key_features_sec ned*/
/* ========== Technologies (Marquee) ========== */
.ws-tech-marquee {
  background: #f6f9ff;
  padding: 28px 0 34px;
  border-top: 1px solid #eef1f7;
  border-bottom: 1px solid #eef1f7;
}

.ws-tech-title {
  font-weight: 500;
  text-align: center;
  color: #0b1b3a;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.ws-tech-lane {
  margin-bottom: 2.5rem;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.ws-tech-track {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

/* tech item */
.ws-tech {
  min-width: 100px;
  text-align: center;
  margin: 0;
}

.ws-tech img {
  width: 55px;
  height: 55px;
  display: block;
  margin: 0 auto 1rem;
}

.ws-tech figcaption {
  font-size: 14px;
  color: #33425b;
}

/* Animation: slow, continuous */
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

  /* half because we duplicated items */
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.ws-left .ws-tech-track {
  animation: marquee-left 10s linear infinite;
}

.ws-right .ws-tech-track {
  animation: marquee-right 10s linear infinite;
}

/* Hover to pause (optional, feels premium) */
.ws-tech-lane:hover .ws-tech-track {
  animation-play-state: paused;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .ws-tech {
    min-width: 110px;
  }

  .ws-tech img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .ws-tech-track {
    gap: 0;
  }

  .ws-tech {
    min-width: 90px;
  }

  .ws-tech img {
    width: 36px;
    height: 36px;
  }

  .ws-tech figcaption {
    font-size: 13px;
  }

  .ws-tech-marquee {
    padding-bottom: 0;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ws-left .ws-tech-track,
  .ws-right .ws-tech-track {
    animation: none;
  }
}

/* ========== Technologies  end (Marquee) ========== */
/* cta section start */

.why_partnering_wrapper {
  display: flex;
  padding: 3rem 0;
  justify-content: space-between;
}

.why_partnering_panel {
  background: linear-gradient(rgba(6, 6, 223, 0.58), rgba(2, 7, 54, 0.75)) top
      center / cover,
    url("../images/website-dev/cta-bg.webp");
  border-radius: 12px 0 0 12px;
  padding: 35px;
  width: 68%;
  position: relative;
}

.content_wrapper {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.why_partnering_head {
  font-size: 1.5rem;
  line-height: 36px;
  font-weight: 600;
  color: #fff;
}

.why_partnering_panel .para {
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
  margin: 10px 0 1rem 0;
}

.common__btn {
  background-color: #1163fb;
  cursor: pointer;
  color: #fff;
  padding: 8px 1.6rem;
  border: 0;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}

.why_partnering_banner {
  margin: 0;
  width: 32%;
  position: relative;
  z-index: 2;
  border-radius: 0 12px 12px 0px;
}

/* cta section end */

@media only screen and (max-width: 768px) {
  .hero_banner-submit {
    width: 100% !important;
  }

  .hero_banner .hero_banner-left h1 {
    margin-top: 1.5rem;
    font-size: 2rem;
  }
  .section-title h2,
  .key_features_sec h2,
  .ws-tech-title,
  .wdp-section-head h2,
  .process-title,
  .benefits_head h3,
  .partner_cta h3,
  .ai-faq-title {
    font-size: 2rem;
  }
    .client-headline {
    font-size: 2rem;
  }
  .wdp-section {
    padding: 2rem 1rem;
  }
  .key_features_item {
    border-bottom: 1px solid #ffffff42;
  }
  .wdp-caption {
    font-size: 11px;
  }
  .why_partnering_banner {
    display: none;
  }
  .why_partnering_panel {
    width: 100%;
    border-radius: 12px;
  }
  .why_partnering_wrapper {
    padding: 3rem 0 1rem 0;
  }
  .process-section {
    padding: 3rem 0 1rem 0;
  }

  .benefits_wrap {
    padding: 2rem 1rem;
  }
  .partner_cta {
    padding: 13rem 0;
  }
}
