/* start  hero section */
.web-dev-hero {
  background: #022d27;
  /* deep green */
  padding: 3rem 0 5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* proper z-index stacking */
  /* margin-top: -90px; */
}

.web-dev-hero .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  /* above front icons */
}

/* Left Content */
.web-dev-hero .content {
  flex: 1 1 500px;
  color: #fff;
}

.web-dev-hero span {
  font-size: 1.2rem;
  font-weight: 500;
}

.web-dev-hero h1 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1rem;
}

.web-dev-hero h1 span {
  color: #fff;
  font-weight: 800;
}

.web-dev-hero p {
  margin: 20px 0;
  font-size: 17px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* CTA button with animation */
.cta-btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1163fb;
  color: #fff;
  padding: 10px 1rem;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(19, 40, 176, 0.92);
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.cta-btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
  margin-bottom: 0;
}

.cta-btn:hover {
  text-decoration: none;
  color: #000;
  background: #fff;
  box-shadow: 0 14px 28px rgba(39, 194, 76, 0.45);
  transform: translateY(-2px);
}

.cta-btn:hover .arrow {
  transform: translateX(6px);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(39, 194, 76, 0.35);
  }

  50% {
    box-shadow: 0 16px 32px rgba(39, 194, 76, 0.55);
  }
}

/* Right Laptop */
.hero-laptop {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  /* under text, over back icons */
}

.hero-laptop img {
  width: auto;
  height: 400px;
  animation: floatLaptop 4s ease-in-out infinite;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.35));
}

/* Laptop floating animation */
@keyframes floatLaptop {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Floating Icons — shared */
.floating-icons {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-icons.back {
  z-index: 1;
}

/* behind laptop */
.floating-icons.front {
  z-index: 2;
}

/* in front of laptop, behind text */

.floating-icons i {
  position: absolute;
  font-size: clamp(26px, 3.2vw, 44px);
  color: rgba(255, 255, 255, 0.18);
  opacity: 0.85;
  /* soft glow + depth */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35), 0 0 10px rgba(255, 255, 255, 0.05);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  animation: floatIcons 14s ease-in-out infinite;
}

/* Positions scattered across the whole banner */
.floating-icons i:nth-child(1) {
  top: 6%;
  left: 3%;
  animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
  top: 18%;
  left: 82%;
  animation-delay: 1s;
}

.floating-icons i:nth-child(3) {
  top: 68%;
  left: 8%;
  animation-delay: 2s;
}

.floating-icons i:nth-child(4) {
  top: 46%;
  left: 90%;
  animation-delay: 3s;
}

.floating-icons i:nth-child(5) {
  top: 82%;
  left: 42%;
  animation-delay: 4s;
}

.floating-icons i:nth-child(6) {
  top: 26%;
  left: 58%;
  animation-delay: 5s;
}

.floating-icons i:nth-child(7) {
  top: 60%;
  left: 18%;
  animation-delay: 6s;
}

.floating-icons i:nth-child(8) {
  top: 15%;
  left: 50%;
  animation-delay: 7s;
}

.floating-icons i:nth-child(9) {
  top: 74%;
  left: 76%;
  animation-delay: 8s;
}

.floating-icons i:nth-child(10) {
  top: 38%;
  left: 28%;
  animation-delay: 9s;
}

.floating-icons i:nth-child(11) {
  top: 64%;
  left: 54%;
  animation-delay: 10s;
}

.floating-icons i:nth-child(12) {
  top: 22%;
  left: 14%;
  animation-delay: 11s;
}

.floating-icons i:nth-child(13) {
  top: 54%;
  left: 4%;
  animation-delay: 12s;
}

.floating-icons i:nth-child(14) {
  top: 86%;
  left: 61%;
  animation-delay: 13s;
}

.floating-icons i:nth-child(15) {
  top: 34%;
  left: 86%;
  animation-delay: 14s;
}

/* Floating animation for icons (similar to laptop, with gentle spin) */
@keyframes floatIcons {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-32px) rotate(180deg);
    opacity: 1;
  }

  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.8;
  }
}
/* end  hero section */

/* tech slider start */

.tech-slider {
  background: linear-gradient(90deg, #081c54, #0a1446);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: marquee 18s linear infinite;
}

.marquee-content li {
  margin: 0 18px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
}

.star-divider {
  margin: 0 12px;
  /* Optional if you want spacing tweak */
}

.star-divider img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}
/* tech slider end */

/* services slider start */
:root {
  --ws-bg: #0b0b0c;
  --ws-card: #16171b;
  --ws-card-hover: #1d1f25;
  --ws-card-active: #1163fb;
  --ws-text: #e7e7ea;
  --ws-muted: #a7aab4;
  --ws-gap: 28px;
  --ws-radius: 22px;
  --ws-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.websorbit-slider {
  background: var(--ws-bg);
  color: var(--ws-text);
  padding: 48px 20px 64px;
  overflow: hidden;
}

.websorbit-slider-head {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

.websorbit-slider-head h3 {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.websorbit-slider-head p {
  text-align: center;
  color: #fff;
  font-size: 15px;
  margin-bottom: 1rem;
}

.ws-head {
  max-width: 1200px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ws-count {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
}

.ws-count strong {
  font-weight: 600;
}

.ws-dash {
  width: 44px;
  height: 2px;
  background: #3a3a3f;
  border-radius: 2px;
  display: inline-block;
}

.ws-count span:last-child {
  opacity: 0.7;
}

.ws-nav {
  display: flex;
  gap: 10px;
}

.ws-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid #2a2b31;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}

.ws-btn:hover {
  background: #1a1b20;
  border-color: #3a3b42;
}

.ws-viewport {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 10px 2px;
}

.ws-track {
  display: flex;
  gap: var(--ws-gap);
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.55s cubic-bezier(0.22, 0.7, 0.23, 1);
  will-change: transform;
}

/* desktop: 3 per view */
.ws-card {
  min-width: calc((100% - (var(--ws-gap) * 2)) / 3);
  background: var(--ws-card);
  border: 1px solid #24252b;
  border-radius: var(--ws-radius);
  padding: 28px;
  box-shadow: var(--ws-shadow);
  transition: 0.25s;
}

.ws-card:hover {
  background: var(--ws-card-hover);
}

.ws-card.ws-active {
  background: var(--ws-card-active);
  border-color: transparent;
  transform: translateY(-6px);
}

.ws-card h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 500;
}

.ws-card p {
  font-size: 15px;
  margin: 0;
  color: var(--ws-muted);
  line-height: 1.7;
}

.ws-card.ws-active h3,
.ws-card.ws-active p {
  color: #fff;
}

.ws-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 22px;
  background: linear-gradient(180deg, #2a8bff, #1e5bff);
}

.ws-ico img {
  filter: invert(1);
  width: 30px;
  height: 30px;
}

/* tablet: 2 per view */
@media (max-width: 1024px) {
  .ws-card {
    min-width: calc((100% - var(--ws-gap)) / 2);
  }
}

/* mobile: 1 per view */
@media (max-width: 650px) {
  .ws-count {
    font-size: 18px;
  }

  .ws-btn {
    width: 40px;
    height: 40px;
  }

  .ws-card {
    min-width: 100%;
  }

  .ws-card h3 {
    font-size: 24px;
  }
}
/* services slider end */

/* cta section */
.partner_cta {
  /* padding: 2rem 0 0; */
  background: url(../images/web-dev/web-app-cta-banner.webp) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 10rem 0;
  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*/
/* industries section start */
.industries_section {
  background: #fff;
  color: #fff;
  padding: 3rem 0;
}

.industries_section_head h3 {
  font-size: 2.5rem;
  text-align: center;
  color: #000;
  margin-bottom: 5px;
}

.industries_section_head p {
  font-size: 15px;
  text-align: center;
  color: #000;
}

/* card */
.industry-card {
  /* background: #141518; */
  background-image: radial-gradient(
    57.02% 18.61% at 50% 107.87%,
    #ffffff 42.34%,
    #1163fb  50.57%,
    #121212 83.5%
  );
  /* box-shadow: 0px 31px 17.2px 0px #00000082; */
  border: 1px solid #26272c;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  /* equal height via .d-flex wrapper on col */
  margin-top: 2rem;
}

.industry-card:hover {
  transform: translateY(-6px);
  background: #1163fb;
  box-shadow: none;

  border: 0;
}

.industry-card:hover .icn {
  background-color: #fff;
  border: 0;
  border-radius: 10px;
  transition: 0.5s ease-in-out;
}

.industry-card:hover p {
  color: #fff;
}

.industry-card .icn {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #1f6bff15;
  border: 1px solid #2a3242;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 24px;
  color: #9bb7ff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.industry-card h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.industry-card p {
  font-size: 15px;
  margin: 0;
  color: #adb1bc;
  line-height: 1.6;
}

/* spacing tweak on xl headlines */
@media (min-width: 992px) {
  .display-4 {
    font-size: 2.8rem;
  }
}
/* industries section end */

/* data driven start */
.data_driven_section {
  padding: 3rem 0;
  background-color: #000;
}

.data_driven_section .container {
  max-width: 1200px;
}

.data_driven_head h3 {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 4rem;
}

.power-platform-left {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.power-platform-box {
  gap: 15px;
  border-radius: 16px;
  padding: 15px;
}

.power-platform-box,
.power-platform-box figure {
  background: #ffffff1a;
}

.power-platform-box figcaption {
  flex-direction: column;
  gap: 5px;
  display: flex;
  flex: 1;
}

.power-platform-box figure {
  width: 67px;
  flex: 0 0 67px;
  height: 67px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.power-platform-box h3 {
  font-size: 1.2rem !important;
  text-align: start;
  font-weight: 400;
  color: #fff;
}

.power-platform-box figcaption p {
  text-align: start;
  font-size: 15px;
  color: #fff;
}

.power-platform-middle {
  width: 100%;
  text-align: center;
  margin-top: -60px;
}

.power-ger-box img {
  height: 400px;
  width: auto;
}
/* data driven end */

/* process satrt */

.wdp-section {
  background: #000;
  padding: 2rem 0 3rem 0;
  color: #e9ecf1;
}

.wdp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
}

.wdp-section-head {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

.wdp-section-head h3 {
  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 {
  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-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 {
  flex: 1;
}

.wdp-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0f1115;
}

.wdp-image img {
  width: 100%;
  height: 480px;
  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: 600;
  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;
  }
}
/* process end */
/* 2ndcta 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/web-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;
}
/* 2ndcta section end */

/* ==== WHY CHOOSE US ==== */
.why-choose-us {
  padding: 2rem 0;
  background: #000;
  color: #f5f5f7;
}

.wcu-heading {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
}

.wcu-heading span {
  color: #1163fb;
}

.wcu-sub {
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 1.05rem;
  color: #aaa;
}

.wcu-box {
  background: #101215;
  border: 1px solid #1f2024;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: 0.25s ease;
  height: 100%;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.wcu-box:hover {
  transform: translateY(-6px);
  background: #14161c;
  border-color: #1163fb;
}

.wcu-icon {
  font-size: 36px;
  margin-bottom: 14px;
  color: #1163fb;
}

.wcu-box h5 {
  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 ==== */
/* security section start*/

.security_section {
  padding: 3rem 0;
  background-color: #fff;
}

.security_section_head {
  margin: 0 auto;
  text-align: center;
  display: block;
  max-width: 1000px;
}

.security_section_head h3 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.security_section_head p {
  margin-bottom: 2rem;
  color: #000;
  font-size: 15px;
}

.security_box {
  background: #030303d7;
  border: 1px solid #2a2b33;
  border-radius: 16px;
  flex: 1 1 330px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.5rem;
}

.security_box h3 {
  color: #fff;
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  font-weight: 500;
}

.security_box p {
  color: #fff;
  text-align: start;
  font-size: 14px;
  margin-bottom: 0;
}

.security_section button {
  background-color: #1163fb;
  color: rgb(255, 255, 255);

  cursor: pointer;
  margin: 0 auto;
  display: block;
  padding: 10px 1.6rem;
  border: 0;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}

.security_section button:hover {
  color: #1163fb;
  border: 1px solid #1163fb;
  background-color: #ffff;
}
/* security section end*/

/* ===== 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 */

@media only screen and (max-width: 500px) {
  .web-dev-hero h1 {
    font-size: 2rem;
  }
  .web-dev-hero span {
    font-size: 1rem;
  }
  .hero-laptop img {
    display: none;
  }

  .web-dev-hero {
    background: #022d27;
    padding: 7rem 0 1rem;
  }

  .websorbit-slider-head h3 {
    font-size: 2rem;
  }
  .partner_cta {
    padding: 14rem 0;
  }
  .partner_cta h3 {
    font-size: 2rem;
    text-align: center;
  }

  .industries_section_head h3 {
    font-size: 2rem;
  }

  .industries_section_head p {
    margin-bottom: 0;
  }

  .data_driven_head h3 {
    text-align: center;
    font-size: 2rem;
  }

  .data_driven_head h3 {
    font-size: 2rem;

    margin-bottom: 2rem;
  }
  .power-ger-box img {
    margin-top: 2rem;
    height: 300px;
    width: auto;
  }
  .power-platform-left {
    gap: 20px;
  }
  .wdp-section-head h3 {
    text-align: center;
    font-size: 2rem;
  }
  .wdp-section {
    padding: 0 0 1rem 0;
  }
  .wdp-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 1rem;
    padding: 10px;
  }
  .why_partnering_panel {
    border-radius: 12px;
    padding: 1rem;
    width: 100%;
  }
  .wcu-box {
    padding: 1rem;
  }
  .wcu-heading {
    font-size: 2rem;
  }
  .security_section_head h3 {
    font-size: 2rem;
  }

  .client-headline {
    font-size: 2rem;
  }
  .ai-faq-section {
    padding: 1rem 0;
  }
  .ai-faq-title {
    font-size: 2rem;
  }

  .ai-faq-toggle {
    font-size: 15px;
  }
  .ai_fa_box {
    margin-bottom: 1.5rem;
  }

  .websorbit-slider {
    background: var(--ws-bg);
    color: var(--ws-text);
    padding: 2rem 1rem 2rem;
  }
  .why_partnering_banner {
    display: none;
  }
}


