
@import url("__global_service.css");
@import url("__helper_service.css");


@keyframes logos-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes carousel {
  /* Slide 1 */
  0%, 20% {
    transform: translateX(0);
  }

  /* Slide to 2 */
  35%, 85% {
    transform: translateX(-370px);
  }
}

.main_sharepoint_service{

.hero {
  background: var(--gradient-hero);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.hero__content {
  max-width: 750px;
}

.hero__title {
  margin-bottom: var(--space-sm) !important;
}

.hero__desc {
  color: var(--color-text-body-on-dark);
  font-size: var(--fs-body);
  max-width: 650px;
  margin-bottom: var(--space-sm);
}

.hero__checklist {
  margin-bottom: var(--space-lg);
}

.hero__cta {
  margin-top: var(--space-xs);
}

.right_figure {
  border-radius: 0.5rem;
  overflow: hidden;
  max-width: 450px;
  max-height: 300px;
}

.right_figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ---- Stat bar layout (uses .stat-bar from helpers.css) ---- */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  border-right: 2px solid #ffffff2e;
}
.stat-item:last-child {
  border-right: none;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 992px) {
  .hero__top {
    grid-template-columns: 1fr;
  }
  .hero__content {
    max-width: 100%;
  }
  .check-list {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .right_figure {
    display: none;
  }
}

/* ---- Trusted by World Client ---- */
section.trusted-clients {
  background: #f7f7f7;
  padding: 50px 0;
}

.trusted-clients h2 {
  font-size: clamp(14px, 2vw, 17px) !important;
  line-height: 24px !important;
  text-align: center;
  font-weight: 600;
  position: relative;
}

.trusted-clients h2::before,
.trusted-clients h2::after {
  display: inline-block;
  content: "";
  height: 2px;
  width: 32%;
  margin: 0 1rem;
  transform: translate(0%);
  bottom: 4px;
  position: relative;
}

.trusted-clients h2::before {
  background: linear-gradient(
    115deg,
    rgba(156, 163, 175, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.trusted-clients h2::after {
  background: linear-gradient(
    262deg,
    rgba(156, 163, 175, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.trusted-clients h2:first-child {
  margin-bottom: 30px;
}

.trusted-clients h2:last-child {
  margin-top: 30px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: all 0.5s ease-out !important;
}

.industries-section {
  background: url(/wp-content/uploads/manageservice/industrybg.png);
  padding: 50px 0;
  background-size: cover;
}

h2.text-white {
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
}

.industries-section .owl-carousel .owl-nav button.owl-next,
.industries-section .owl-carousel .owl-nav button.owl-prev,
.industries-section .owl-carousel button.owl-dot {
  background: 0 0;
  color: #fff;
  border: none;
  padding: 0 !important;
  font: inherit;
  font-size: 57px;
  margin-right: 13px;
}

.industry-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  height: 54vh;
  object-fit: cover;
}

.industry-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  opacity: 1;
  transition: opacity 0.3s ease-in-out !important;
  border-radius: 15px;
}

.industry-card:hover .overlay {
  opacity: 0.9;
}

.industry-card .content {
  position: absolute;
  bottom: 0px;
  /* left: 15px; */
  color: white;
  z-index: 2;
  backdrop-filter: blur(18px);
  text-align: left;
  padding: 14px 10px;
  height: 46%;
}

.industry-card:hover .content {
  height: 100%;
}

.industry-card h3 {
  font-size: 1.25rem !important;
  margin-bottom: 5px;
}

.industry-card p {
  font-size: 0.9rem;
}

@media screen and (min-device-width: 1400px) and (max-device-width: 1599px) {
  .industry-card img {
    height: 80vh;
  }
}

@media screen and (min-width: 767px) {
  .ai-powered-title {
    font-size: 2.5rem;
  }

  .ai-powered-subtitle {
    font-size: 1.2rem;
  }

  .ai-cta-section {
    padding: 30px 20px;
  }

  .ai-cta-title {
    font-size: 1.8rem;
  }

  h3.text-white .text {
    padding-right: 36px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 990px) {
  .trusted-clients h2::before,
  .trusted-clients h2::after {
    width: 29%;
  }
}

@media screen and (max-width: 767px) {
  .trusted-clients h2::before,
  .trusted-clients h2::after {
    width: 7%;
  }

  .industries-section h3 {
    font-size: 26px !important;
    line-height: 40px;
  }
}

@media (max-width: 576px) {
  .ai-powered-title {
    font-size: 2rem;
  }

  .ai-powered-card {
    padding: 20px;
  }
}

.banner-main-header {
  .banner-img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
  }
}

.differ-customer-service .Solutions-boxs:hover .sol-img img {
  filter: invert(1);
}
/* ==================== TRUSTED BY ==================== */
.logos-bar {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.logos-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
}

.logos-track-img-wrap {
  overflow: hidden;
  position: relative;
}

.logos-track-img {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: logos-scroll 30s linear infinite !important;
  width: max-content;
}

.logos-track-img:hover {
  animation-play-state: paused;
}


.logos-track-img img {
  height: 4rem;
  width: 10rem;
  flex-shrink: 0;
}

/* ========== INTRO TEXT SECTION ========== */
.intro {
  background: var(--color-white);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: start;
}

.intro__heading {
  max-width: 480px;

  figure {
    margin: auto;
    max-width: 450px;
    height: 250px;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-top: var(--space-sm);
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.intro__body p {
  margin: 0 0 var(--space-md) 0;
  color: var(--color-text-body);
  font-size: var(--fs-body);
}
.intro__body p:last-child {
  margin-bottom: 0;
}

.intro__body a {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.intro__body a:hover {
  color: var(--color-primary-dark);
}

@media (max-width: 900px) {
  .intro__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .intro__heading {
    max-width: 100%;
  }
}

/* ========== PORTALS GRID SECTION =========== */

.portals {
  background: var(--color-bg-light);
}

.portals__header {
  max-width: 760px;
  margin: 0 auto var(--space-lg) auto;
  text-align: center;
}
.portals__title {
  margin-bottom: var(--space-xs);
}
.portals__desc {
  font-size: var(--fs-body);
  color: var(--color-text-body);
}

.portals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.portal-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xs);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base) !important;
}
.portal-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.portal-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: #efebfc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xs);
}
.portal-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
}

.portal-card__title {
  margin-bottom: var(--space-xs);
  font-size: var(--fs-lead) !important;
}

.portal-card__desc {
  font-size: var(--fs-ex_small);
  color: var(--color-text-body);
  margin: 0;
  line-height: var(--lh-body);
}
.portal-card__desc a {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.portal-card__desc a:hover {
  color: var(--color-primary-dark);
}

/* ---- CTA banner ---- */
.cta-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-banner__text {
  max-width: 650px;
}
.cta-banner__title {
  color: var(--color-white);
  margin-bottom: var(--space-2xs);
}
.cta-banner__desc {
  color: var(--color-text-body-on-dark);
  font-size: var(--fs-body);
  margin: 0;
}

.cta-banner__action {
  flex-shrink: 0;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 992px) {
  .portals__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .portals__grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cta-banner__action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============== END-TO-END SERVICES SECTION =============== */

.services {
  background: var(--color-white);
}

.services__header {
  max-width: 760px;
  margin: 0 auto var(--space-lg) auto;
  text-align: center;
}
.services__title {
  margin-bottom: var(--space-xs);
}
.services__desc {
  font-size: var(--fs-body);
  color: var(--color-text-body);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

.service-card {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: var(--color-white);
  border: 1.4px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base) !important;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.service-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-white);
}

.service-card__title {
  margin-bottom: var(--space-2xs);
  font-size: var(--fs-lead) !important;
  line-height: var(--lh-heading) !important;
  font-weight: var(--fw-semibold);
}

.service-card__desc {
  font-size: var(--fs-ex_small);
  color: var(--color-text-body);
  margin: 0;
}
.service-card__desc a {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-card__desc a:hover {
  color: var(--color-primary-dark);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex-direction: column;
  }
}

/* ================= CASE STUDIES SECTION =================== */

.case-studies {
  background: var(--color-bg-light);
}

.case-studies__header {
  max-width: 760px;
  margin: 0 auto var(--space-md) auto;
  text-align: center;
}
.case-studies__title {
  margin-bottom: 0;
}

.case-studies__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.case-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.case-card__side {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  &::before {
    content: "";
    background: var(--gradient-card);
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

.case-card__side img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.case-card__side > *:not(img) {
  position: relative;
  z-index: 2;
}

.case-card__label {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.case-card__title {
  color: var(--color-white);
  font-size: var(--fs-h4) !important;
  margin-bottom: var(--space-md);
  line-height: var(--lh-heading) !important;
}

.case-card__tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  font-size: var(--fs-small);
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-full);
}

.case-card__body {
  padding: var(--space-sm) var(--space-md);
}

.case-block {
  margin-bottom: var(--space-xs);
}
.case-block:last-of-type {
  margin-bottom: 0;
}

.case-block__label {
  color: var(--color-primary);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 var(--space-3xs) 0;
}

.case-block__text {
  margin: 0;
  color: var(--color-text-body);
  font-size: var(--fs-ex_small);
  line-height: var(--lh-body);
}

.case-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs) var(--space-md);
}

.case-result-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2xs);
}

.case-result-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.case-result-item__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--color-black);
}

.case-result-item__text {
  font-size: var(--fs-ex_small);
  color: var(--color-text-heading);
  line-height: var(--lh-heading);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .case-card {
    grid-template-columns: 1fr;
  }
  .case-card__side {
    padding: var(--space-lg) var(--space-lg);
  }
  .case-card__title {
    font-size: var(--fs-h4) !important;
  }
  .case-card__body {
    padding: var(--space-lg);
  }
}

@media (max-width: 560px) {
  .case-results {
    grid-template-columns: 1fr;
  }
}

/* ===================== TECH STACK SECTION ====================== */

.tech-stack {
  background: var(--color-white);
}

.tech-stack__header {
  max-width: 780px;
  margin: 0 auto var(--space-md) auto;
  text-align: center;
}
.tech-stack__title {
  margin-bottom: var(--space-xs);
}
.tech-stack__desc {
  font-size: var(--fs-body);
  color: var(--color-text-body);
}

.tech-stack__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.stack-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base) !important;
}
.stack-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stack-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.stack-card__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--fs-lead);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
}

.stack-card__title {
  font-size: var(--fs-h4) !important;
  font-weight: var(--fw-bold);
  color: var(--color-text-heading);
  line-height: var(--lh-heading);
}

.stack-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xs);
}

.stack-tag {
  display: inline-block;
  padding: var(--space-3xs) var(--space-xs);
  border-radius: var(--radius-sm);
  background: var(--color-bg-v_light);
  color: var(--color-text-v_body);
  font-size: var(--fs-ex_small);
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

/* ---- CTA banner (wide, text left, btn right) ---- */
.tech-cta-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.tech-cta-banner__text {
  color: var(--color-white);
  font-size: var(--fs-h4) !important;
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  max-width: 680px;
  margin: 0;
}

.tech-cta-banner__action {
  flex-shrink: 0;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .tech-stack__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .tech-stack__grid {
    grid-template-columns: 1fr;
  }
  .tech-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .tech-cta-banner__action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ======================= COMPARISON TABLE SECTION =============================== */

.comparison {
  background: var(--color-bg-light);
}

.comparison__header {
  max-width: 780px;
  margin: 0 auto var(--space-lg) auto;
  text-align: center;
}
.comparison__title {
  margin-bottom: var(--space-xs);
}
.comparison__desc {
  font-size: var(--fs-body);
  color: var(--color-text-body);
}

/* ---- Table wrapper (horizontal scroll on mobile) ---- */
.comparison__table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--color-border-light);
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-xs);
  overflow: hidden;
  margin-bottom: 0 !important;
}

/* ---- Header row ---- */
.comparison-table thead tr {
  border-bottom: 2px solid var(--color-border-light);
  background: var(--gradient-hero);
  color: white !important;
}

.comparison-table th {
  padding: var(--space-2xs) var(--space-md);
  text-align: left;
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  /* color: var(--color-text-heading); */
  vertical-align: middle;
}

/* Aspect header — muted label */
.comparison-table th.th-aspect {
  /* color: var(--color-text-muted); */
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 16%;
  white-space: nowrap;
  /* background: var(--color-bg-light); */
}

/* SharePoint — highlighted column header */
.comparison-table th.th-sharepoint {
  /* background: var(--gradient-hero); */
  /* color: var(--color-white); */
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  width: 28%;
}

.comparison-table th.th-confluence,
.comparison-table th.th-viva {
  width: 28%;
}

/* ---- Body rows ---- */
.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
}
.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: var(--space-xs) var(--space-xs);
  font-size: var(--fs-ex_small);
  color: var(--color-text-body);
  line-height: var(--lh-body);
  vertical-align: top;
}

/* Aspect label cell */
.comparison-table td.td-aspect {
  font-weight: var(--fw-bold);
  color: var(--color-text-heading);
  background: var(--color-bg-light);
  font-size: var(--fs-small);
  white-space: nowrap;
  text-align: start;
}

/* SharePoint column body cells — subtle highlight */
.comparison-table td.td-sharepoint {
  background: rgba(91, 61, 245, 0.04);
  color: var(--color-text-body);
}

/* Hover rows */
.comparison-table tbody tr:hover td {
  background-color: #f9f8fe;
}
.comparison-table tbody tr:hover td.td-sharepoint {
  background-color: rgba(91, 61, 245, 0.07);
}
.comparison-table tbody tr:hover td.td-aspect {
  background-color: var(--color-bg-light);
}

/* ================== WHY CHOOSE SECTION ========================== */

.why-choose {
  background: #f3f0fc;
}

.why-choose__header {
  max-width: 760px;
  margin: 0 auto var(--space-lg) auto;
  text-align: center;
}
.why-choose__title {
  margin-bottom: var(--space-sm);
}
.why-choose__desc {
  font-size: var(--fs-body);
  color: var(--color-text-body);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl) var(--space-lg);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e7dffb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.why-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
}

.why-card__title {
  font-size: var(--fs-lead) !important;
  font-weight: var(--fw-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-xs);
  line-height: var(--lh-heading) !important;
}

.why-card__desc {
  font-size: var(--fs-ex_small);
  color: var(--color-text-body);
  line-height: var(--lh-body);
  margin: 0;
}
.why-card__desc a {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.why-card__desc a:hover {
  color: var(--color-primary-dark);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why-choose__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ==================== HOW WE BUILD ======================= */

.how-we-build {
  background: var(--color-white);
}

.how-we-build__header {
  max-width: 720px;
  margin: 0 auto var(--space-lg) auto;
  text-align: center;
}
.how-we-build__title {
  margin-bottom: var(--space-xs);
}
.how-we-build__desc {
  font-size: var(--fs-body);
  color: var(--color-text-body);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
}

.step-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base) !important;
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-card__num {
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.step-card__title {
  font-size: var(--fs-lead) !important;
  font-weight: var(--fw-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2xs);
  line-height: var(--lh-heading) !important;
}

.step-card__desc {
  font-size: var(--fs-ex_small);
  color: var(--color-text-body);
  line-height: var(--lh-body);
  margin: 0;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================= ENGAGEMENT MODEL ======================== */

.engagement {
  background: var(--color-bg-light);
}

.engagement__header {
  max-width: 760px;
  margin: 0 auto var(--space-lg) auto;
  text-align: center;
}
.engagement__title {
  margin-bottom: var(--space-xs);
}
.engagement__desc {
  font-size: var(--fs-body);
  color: var(--color-text-body);
}

.engagement__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  align-items: center;
}

/* ---- Base card ---- */
.eng-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xs) var(--space-sm);
}

.eng-card__plan {
  font-size: var(--fs-h3) !important;
  font-weight: var(--fw-extrabold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-3xs);
}

.eng-card__sub {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.eng-card__divider {
  border: none;
  border-top: 2px solid var(--color-border-light);
  margin-bottom: var(--space-xs);
}

.eng-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.eng-feat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.eng-feat__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eng-feat__icon svg {
  width: 12px;
  height: 12px;
}

/* Default (non-highlighted) check icon */
.eng-feat__icon--default {
  background: transparent;
}
.eng-feat__icon--default svg {
  stroke: var(--color-primary);
}

.eng-feat__text {
  font-size: var(--fs-ex_small);
  color: var(--color-text-body);
  line-height: var(--lh-heading);
}

/* ---- Featured / highlighted card (middle) ---- */
.eng-card--featured {
  background: var(--gradient-hero);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.eng-card--featured .eng-card__plan {
  color: var(--color-white);
}
.eng-card--featured .eng-card__sub {
  color: rgba(255, 255, 255, 0.7);
}
.eng-card--featured .eng-card__divider {
  border-color: rgba(255, 255, 255, 0.25);
}
.eng-card--featured .eng-feat__text {
  color: var(--color-white);
}

/* Lime check icon on featured card */
.eng-feat__icon--lime {
  background: var(--color-accent-lime);
}
.eng-feat__icon--lime svg {
  stroke: var(--color-black);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .engagement__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }
  .eng-card--featured {
    transform: none;
  }
}

/* ==================== INDUSTRIES SECTION ================ */

.industries {
  background: var(--color-white);
}

.industries__header {
  max-width: 760px;
  margin: 0 auto var(--space-lg) auto;
  text-align: center;
}
.industries__title {
  margin-bottom: var(--space-sm);
}
.industries__desc {
  font-size: var(--fs-body);
  color: var(--color-text-body);
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.industry-tile {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  padding: var(--space-2xs) var(--space-2xs);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base) !important;
  cursor: default;
}
.industry-tile:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.industry-tile__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #efebfc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-tile__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
}

.industry-tile__label {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-text-heading);
  line-height: var(--lh-heading);
}

/* ---- CTA banner ---- */
.industry-cta {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

/* decorative blur circle top-right */
.industry-cta::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.industry-cta__text {
  max-width: 680px;
}

.industry-cta__title {
  color: var(--color-white);
  font-size: var(--fs-h3) !important;
  margin-bottom: var(--space-xs);
}

.industry-cta__desc {
  color: var(--color-text-body-on-dark);
  font-size: var(--fs-ex_small);
  margin: 0;
}

.industry-cta__action {
  flex-shrink: 0;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .industry-cta__action .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .industries__grid {
    grid-template-columns: 1fr;
  }
}

/* ================ WHY CHOOSE US ================== */

.why-us {
  background: var(--color-bg-light);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Left sticky column */
.why-us__left {
  position: sticky;
  top: var(--space-xl);
}

.why-us__title {
  margin-bottom: var(--space-sm);
}

.why-us__intro {
  font-size: var(--fs-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
  margin: 0;
}

/* Right: feature list */
.why-us__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-us-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.why-us-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-us-item__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-white);
}

.why-us-item__title {
  font-size: var(--fs-lead) !important;
  font-weight: var(--fw-bold);
  color: var(--color-text-heading);
  margin-bottom: var(--space-2xs);
  line-height: var(--lh-heading) !important;
}

.why-us-item__desc {
  font-size: var(--fs-ex_small);
  color: var(--color-text-body);
  line-height: var(--lh-body);
  margin: 0;
}
.why-us-item__desc a {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: var(--fs-small);
}
.why-us-item__desc a:hover {
  color: var(--color-primary-dark);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .why-us__left {
    position: static;
  }
}

/* =================== TESTIMONIALS SECTION ===================== */

.testimonials {
  background: var(--color-white);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.testimonials__title {
  margin: 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
}

.testimonials-carousel-wrapper{
  padding-left: 0 !important;
}

.testimonials-carousel-track{
  display: flex;
  gap: 28px;
  justify-content: start !important;
  width: max-content;
  animation: carousel 6s linear infinite !important;
}

.testi-card {
  display: flex;
  max-width: 350px;
  flex-direction: column;
  background: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  box-shadow: var(--shadow-sm);
}

/* Lime double-quote icon */
.testi-card__quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-accent-lime);
  font-family: Georgia, serif;
  letter-spacing: -0.05em;
}

.testi-card__body {
  flex: 1;
  font-size: var(--fs-ex_small);
  color: var(--color-text-body);
  line-height: var(--lh-body);
  margin: 0 0 var(--space-3xs) 0;
  padding-bottom: var(--space-2xs);
  border-bottom: 1px solid var(--color-border-light);
}

/* Author row */
.testi-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-xs);
}

.testi-card__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
}

.testi-card__name {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--color-text-heading);
  margin: 0 0 2px 0;
}
.testi-card__role {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin: 0;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}

/* =============== FAQ ACCORDION SECTION =========== */

.faq {
  background: var(--color-bg-light);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.faq__title {
  margin: 0;
}

.faq__list {
  max-width: 950px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base) !important;
}
.faq-item.is-open {
  box-shadow: var(--shadow-sm);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-xs);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-item__question {
  font-size: var(--fs-lead);
  font-weight: var(--fw-bold);
  color: var(--color-text-heading);
  line-height: var(--lh-heading);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #efebfc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition-base),
    transform var(--transition-base) !important;
}
.faq-item__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  transition: transform var(--transition-base) !important;
}

/* Open state */
.faq-item.is-open .faq-item__icon {
  background: var(--color-primary);
}
.faq-item.is-open .faq-item__icon svg {
  stroke: var(--color-white);
  transform: rotate(45deg);
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease !important;
}
.faq-item.is-open .faq-item__body {
  grid-template-rows: 1fr;
}

.faq-item__body-inner {
  overflow: hidden;
}

.faq-item__answer {
  padding: 0 var(--space-xs) var(--space-xs) var(--space-xs);
  font-size: var(--fs-ex_small);
  color: var(--color-text-body);
  line-height: var(--lh-body);
  margin: 0;
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-xs);
}

/* ====================== FINAL CTA BANNER ====================== */

.final-cta {
  background: var(--gradient-hero);
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decorative soft circles */
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}
.final-cta::before {
  width: clamp(240px, 28vw, 420px);
  height: clamp(240px, 28vw, 420px);
  left: clamp(-120px, -8vw, -60px);
  top: 50%;
  transform: translateY(-50%);
}
.final-cta::after {
  width: clamp(180px, 20vw, 300px);
  height: clamp(180px, 20vw, 300px);
  right: clamp(-90px, -6vw, -40px);
  top: 50%;
  transform: translateY(-50%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-inline: auto;
}

.final-cta__title {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.final-cta__desc {
  color: var(--color-text-body-on-dark);
  font-size: var(--fs-body);
  margin: 0 0 var(--space-sm) 0;
}

/* ======================= Industry Section ====================== */
.iods-section {
  padding: 25px 0;
  background: #4f46e5;
  color: #ffffff;
  overflow: hidden;
}

/* Header */
.iods-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.iods-header p {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 1rem;
  color: #cbd5f5;
  line-height: 1.7;
}

.iods-header span {
  color: #38bdf8;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper,
.iods-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding-left: 40px;
}

/* Track */
.testimonials-carousel-track,
.iods-carousel-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: logos-scroll 35s linear infinite;
}

/* Card */
.iods-card {
  position: relative;
  min-width: 230px;
  height: 280px;
  overflow: hidden;
  border-radius: 4px;
  transform: skewX(-3deg);
}

.iods-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewX(3deg) scale(1.1);
  transition: transform 0.5s ease !important;
}

/* Hover Effect (Diagonal emphasis) */
.iods-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.iods-card:hover::after {
  opacity: 1;
}

.iods-card:hover img {
  transform: skewX(3deg) scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .iods-card {
    min-width: 220px;
    height: 320px;
  }

  .iods-header h2 {
    font-size: 2rem;
  }
}
/* ---- Existing styles remain unchanged ---- */
/* Wrapper for card + heading */
.iods-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

/* Heading below card */
.iods-item h3 {
  margin-top: 14px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  text-align: center !important;
}

/* Hover text overlay */
.iods-card .iods-overlay {
  background:#00000085;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.iods-card .iods-overlay p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e5e7eb;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

/* Show text on hover */
/* .iods-card:hover .iods-overlay {
  opacity: 1;
} */

.iods-card:hover .iods-overlay p {
  transform: translateY(0);
}
.testimonials-carousel-wrapper:hover .testimonials-carousel-track,
.iods-carousel-wrapper:hover .iods-carousel-track {
  animation-play-state: paused !important;
}
}


/* ==================== PROCESS SECTION ================== */
    .ss-wrapper {
      padding: 40px 0;
      background-color: #f9f9f9;
    }

    .ss-title {
      text-align: center;
      font-size: var(--fs-h3) !important;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .ss-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      padding: var(--space-sm);
    }

    .ss-image{
      height: 350px !important;
      width: 420px !important;
      overflow: hidden !important;
      border-radius: var(--radius-sm) !important;
    }

    .ss-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius-sm) !important;
    }

    .ss-content h3 {
      color: #4f46e5;
      font-size: var(--fs-lead) !important;
      font-weight: 600;
      margin-bottom: 15px;
      line-height: var(--lh-heading) !important;
    }
    

    .ss-content p {
      font-size: var(--fs-ex_small);
      color: #555;
      line-height: 1.7;
    }

    .ss-btn {
      background-color: #4f46e5;
      color: #fff !important;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      display: inline-block;
      margin-top: 15px;
    }

    .ss-btn:hover {
      background-color: #3730a3;
      color: #fff;
    }

    .carousel-control-prev {
        left: -45px !important;
    }
    .carousel-control-next {
        right: -45px !important;
    }
    .carousel-control-next, .carousel-control-prev {
        width: 5% !important;
    }
    .carousel-indicators {
        margin-bottom: -30px !important;
    }


    /* Carousel arrows */
    .ss-carousel .carousel-control-prev-icon,
    .ss-carousel .carousel-control-next-icon {
      filter: invert(1);
    }

    /* Navigation dots */
    .ss-carousel .carousel-indicators [data-bs-target] {
      background-color: #4f46e5 !important;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin: 0 5px;
    }

    .ss-carousel .carousel-indicators .active {
      background-color: #4f46e5 !important;
    }

    @media (max-width: 576px) {
        .carousel-control-next, .carousel-control-prev {
            display: none !important; 
    }
    .ss-image{
      height: 250px !important;
    }
}

    
