/* -----------------------------------------
  1. Design tokens (CSS variables)
------------------------------------------- */
:root {
  --color-primary: #4a3185;
  --color-secondary: #39b8e1;
  --color-heading: var(--color-primary);
  --color-subheading: #000000;
  --color-body: #67696f;
  --color-muted: #a6a8ad;
  --color-bg: #ffffff;
  --color-section-bg: rgba(77, 144, 254, 0.05);
  --color-border: #e6e9ee;

  --btn-bg: var(--color-primary);
  --btn-color: #ffffff;
  --btn-radius: 28px;
  --btn-hover-bg: #ffffff;
  --btn-hover-color: var(--color-primary);

  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 80px;

  --font-family-base:
    "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  --h1-size: 36px;
  --h2-size: 40px;
  --h3-size: 16px;
  --body-size: 16px;
  --small-size: 12px;

  --heading-font: "Rubik", sans-serif;
  --body-font: "Roboto", sans-serif;
  --heading-color: #000000;
  --body-color: #67696f;

  --container-width: 1200px;
  --shadow-soft: 0 6px 18px rgba(74, 49, 133, 0.08);
}

/* -----------------------------------------
  2. Reset & global base styles
------------------------------------------- */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-heading);
  font-weight: var(--fw-medium);
  line-height: 1.15;
  font-family: Rubik;
}

p {
  font-size: var(--body-size);
  /* color: var(--color-body); */
  margin: 0 0 var(--space-md) 0;
}
.small,
small {
  font-size: var(--small-size);
  color: var(--color-muted);
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-secondary);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* -----------------------------------------
  3. Header & Hero
------------------------------------------- */
.top-header {
  background: linear-gradient(180deg, #dff5fb 0%, #ffffff 45%);
}

.top-hero {
  position: relative;
  overflow: hidden;
  padding: 18px 0 36px;
}
.header-row {
  align-items: center;
  gap: 16px;
}
.brand {
  height: 65px;
  max-height: 65px;
  width: auto;
  object-fit: contain;
  display: block;
}
.top-hero img.brand {
  max-width: 320px;
}

.top-hero .nav .nav-link {
  color: var(--color-primary) !important;
  padding: 8px 12px;
}
@media (min-width: 992px) {
  .top-hero .nav .nav-link {
    font-size: 15px;
  }
}

.hero-inner {
  text-align: center;
  padding: 24px 0 56px;
}

nav[aria-label="breadcrumb"] {
  display: flex;
  justify-content: center;
  width: 100%;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  padding: 0;
  font-size: 14px;
}

.breadcrumb-item {
  color: var(--color-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-muted);
}

.breadcrumb-item a {
  color: var(--color-muted);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--color-primary);
}

.breadcrumb-item.active {
  color: var(--color-muted);
}

.hero-title {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  margin-bottom: 8px;
}

.hero-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.95;
}
.hero-deco.left-deco {
  left: 3%;
  bottom: 0;
  width: 250px;
  max-width: 40%;
  z-index: 0;
}
.hero-deco.right-deco {
  right: 3%;
  top: 18%;
  width: 140px;
  z-index: 0;
}
.hero-deco.dots-deco {
  right: 0;
  top: 10%;
  width: 100px;
  z-index: 0;
}
.hero-deco.dots-deco-ser {
  left: 0;
  width: 200px;
  z-index: 0;
}

/* -----------------------------------------
  4. Buttons
------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px 20px;
  border-radius: var(--btn-radius);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: all 0.22s ease;
  border: 0;
}

.btn-primary,
.cta-btn {
  background: var(--btn-bg);
  color: var(--btn-color);
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
}

.cta-btn {
  white-space: nowrap;
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--btn-radius);
  font-weight: var(--fw-medium);
  background: var(--btn-bg);
  color: var(--btn-color);
  box-shadow: var(--shadow-soft);
  transition: all 0.18s ease;
  text-decoration: none;
}
.cta-btn:hover,
.btn-primary:hover {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-color);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--btn-bg);
}

.btn-outline-teal {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.btn-outline-teal:hover {
  background: rgba(57, 184, 225, 0.08);
  color: var(--color-secondary);
}

@media (max-width: 767px) {
  .collapse .cta-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* -----------------------------------------
  5. Sections & Cards
------------------------------------------- */
.section {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
}
.section--light {
  background: var(--color-section-bg);
}
.edge-title {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: var(--fw-medium);
  margin-bottom: 18px;
  position: relative;
  line-height: 1.05;
}
.edge-desc {
  color: var(--color-muted);
  max-width: 640px;
  line-height: 1.7;
}
.card {
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(74, 49, 133, 0.06);
}
.icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.hr {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-md) 0;
}

.diagram {
  max-width: 450px;
  margin: 0 auto;
}
.diagram img {
  width: 100%;
  height: auto;
  display: block;
}

/* -----------------------------------------
  6. Services (cards, lists, featured)
------------------------------------------- */
.services-head h2,
.service-card h5 {
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--heading-color);
}

.service-card h5 {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.25;
}

.service-card p {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 400;
  color: var(--body-color);
  margin-bottom: 16px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 14px;
}

.service-card p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  background-color: #000000;
  border-radius: 2px;
}

.service-feats {
  font-family: var(--body-font);
  font-size: 12px;
  color: var(--body-color);
  /* margin-top: 18px; */
  line-height: 1.65;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
  margin-left: 0;
  column-count: 2;
  /* column-gap: 48px; */
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  /* column-break-inside: avoid; */
}
@media (min-width: 768px) {
  .service-feats {
    column-count: 2;
  }
}
@media (max-width: 767px) {
  .service-feats {
    column-count: 1;
    column-gap: 0;
    padding-left: 18px;
    font-size: 13px;
  }
}

.service-feats li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  display: list-item;
  margin-bottom: 12px;
  padding-left: 0;
  white-space: normal;
}
.service-feats li::before {
  display: none;
}

.row.g-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}

@media (min-width: 992px) {
  .row.g-4 > [class*="col-"] {
    flex: 0 0 calc((100% - 2 * 1.5rem) / 3);
    max-width: calc((100% - 2 * 1.5rem) / 3);
    display: flex;
    box-sizing: border-box;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .row.g-4 > [class*="col-"] {
    flex: 0 0 48%;
    max-width: 48%;
    display: flex;
  }
}

@media (max-width: 575.98px) {
  .row.g-4 > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 360px;
  border-radius: 12px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.service-card > .icon,
.service-card > h5,
.service-card > p {
  flex: 0 0 auto;
}
.service-card .service-feats {
  margin-top: auto;
}

.service-featured {
  background: linear-gradient(180deg, rgba(242, 238, 251, 0.9), #fff);
  border-color: rgba(77, 70, 120, 0.06);
  box-shadow: 0 10px 30px rgba(74, 49, 133, 0.06);
  transform: translateY(-8px);
  /* min-height: 380px; */
}

.service-card .icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex: 0 0 auto;
}
.service-card .icon img {
  display: block;
  width: 22px;
  height: auto;
}

.service-card h5 {
  margin-bottom: 6px;
}
.service-card,
.service-card * {
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(74, 49, 133, 0.06);
}

/* -----------------------------------------
  7. Underline utility for specific text (Low Code)
------------------------------------------- */
/* Underline utility — fixed stacking & offset for section backgrounds */
.underline-text,
.underline-text-qa {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 1; /* keep text above the underline */
  padding-bottom: 6px; /* create a little space so underline sits visible */
}

.underline-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px; /* move the underline slightly below the text baseline */
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #18b8b3, #1da3c8);
  border-radius: 6px;
  transform: rotate(-3deg);
  z-index: 0; /* placed under the text, above the section bg */
  pointer-events: none;
  opacity: 0.95;
}

.underline-text-qa::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px; /* move the underline slightly below the text baseline */
  width: 90%;
  height: 6px;
  background: linear-gradient(90deg, #18b8b3, #1da3c8);
  border-radius: 6px;
  transform: rotate(-3deg);
  z-index: 0; /* placed under the text, above the section bg */
  pointer-events: none;
  opacity: 0.95;
}

/* -----------------------------------------
  8. Edge/centering adjustments (tablet & mobile)
------------------------------------------- */
.edge-section {
  position: relative;
  z-index: 1;
}
.edge-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .edge-section .edge-title {
    text-align: center;
    width: 100%;
  }
  .edge-section .edge-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 560px;
  }
  .edge-section .diagram {
    margin: 20px auto 0;
    text-align: center;
  }
  .edge-section .diagram img {
    display: inline-block;
    margin: 0 auto;
    max-width: 100%;
  }
  .edge-section .row > .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .edge-section .mt-4.d-flex.gap-3 {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .edge-section .mt-4.d-flex.gap-3 {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .edge-section .mt-4 .btn {
    width: 100%;
    max-width: 320px;
  }
  .edge-section .edge-title {
    font-size: clamp(20px, 6vw, 28px);
  }
}

/* -----------------------------------------
  9. Hero deco responsiveness tweaks
------------------------------------------- */
@media (max-width: 768px) {
  .hero-deco {
    transition:
      width 0.18s ease,
      transform 0.18s ease,
      opacity 0.18s ease;
    z-index: 0;
    opacity: 0.92;
  }
  .hero-deco.left-deco {
    left: 4%;
    bottom: -6%;
    width: 160px;
    max-width: 34%;
    transform: translateY(6%);
  }
  .hero-deco.right-deco {
    right: 4%;
    top: 8%;
    width: 120px;
    max-width: 30%;
    transform: translateY(-4%);
  }
  .hero-deco.dots-deco {
    right: 6%;
    top: 56%;
    width: 72px;
    max-width: 18%;
    transform: translateY(0);
  }
  .hero-deco.dots-deco-ser {
    left: 0;
    width: 72px;
    max-width: 18%;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .hero-deco.left-deco {
    left: 6%;
    bottom: -8%;
    width: 120px;
    max-width: 36%;
    transform: translateY(8%);
    opacity: 0.9;
  }
  .hero-deco.right-deco {
    right: 6%;
    top: 6%;
    width: 96px;
    max-width: 32%;
    transform: translateY(-6%);
    opacity: 0.9;
  }
  .hero-deco.dots-deco {
    right: 10%;
    top: 62%;
    width: 56px;
    max-width: 20%;
    opacity: 0.85;
  }
}

/* -----------------------------------------
  10. Responsive container & headings adjustments
------------------------------------------- */
@media (max-width: 1200px) {
  :root {
    --container-width: 1000px;
  }
}
@media (max-width: 992px) {
  :root {
    --container-width: 920px;
  }
  h1 {
    font-size: calc(var(--h1-size) - 4px);
  }
  h2 {
    font-size: calc(var(--h2-size) - 6px);
  }
  .hero-deco.left-deco {
    width: 220px;
  }
}
@media (max-width: 768px) {
  :root {
    --container-width: 720px;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 28px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero-inner {
    padding: 20px 0 36px;
  }
  .brand {
    height: 56px;
  }
}
@media (max-width: 576px) {
  :root {
    --container-width: 100%;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 24px;
  }
  .icon {
    width: 40px;
    height: 40px;
  }
  .hero-deco.left-deco,
  .hero-deco.right-deco,
  .hero-deco.dots-deco,
  .hero-deco.dots-deco-ser {
    display: none;
  }
  .service-card {
    min-height: 0;
    padding: 18px;
  }
  .service-featured {
    transform: none;
  }
}

/* -------------------------
   WHAT SETS US APART
   ------------------------- */
.what-sets-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background: #f7fbfd; /* subtle background like screenshot */
}

/* Slider wrapper (viewport + arrows) */
.wsu-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

/* arrows */
.wsu-arrow {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.wsu-arrow:active {
  transform: scale(0.98);
}
.wsu-arrow:focus {
  outline: 3px solid rgba(24, 184, 179, 0.16);
}

/* viewport — clip to visible items */
.wsu-viewport {
  overflow: hidden;
  width: calc(360px * 3 + 28px * 2); /* 3 cards + gaps */
  max-width: 100%;
  flex: 0 0 auto;
}

/* row acts as the track to translate */
.wsu-row {
  display: flex;
  gap: 28px; /* used by JS too */
  align-items: stretch;
  transition: transform 360ms cubic-bezier(0.22, 0.9, 0.3, 1);
  margin-top: 18px;
}

/* card base */
.wsu-card {
  flex: 0 0 360px;
  width: 360px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 0;
  overflow: hidden;
  text-align: left;
  box-shadow: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  outline: none;
  cursor: pointer;
}

/* image area */
.wsu-card .wsu-media {
  height: 170px;
  background: linear-gradient(180deg, #f1f1f6, #fff);
  display: block;
  overflow: hidden;
}
.wsu-card .wsu-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* content */
.wsu-card .wsu-title {
  font-family: var(--heading-font);
  font-size: 18px;
  margin: 18px 20px 8px;
  color: #111;
}
.wsu-card .wsu-desc {
  margin: 0 20px 20px;
  font-family: var(--body-font);
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.6;
}

/* hover/focus visual uplift */
.wsu-card:hover,
.wsu-card:focus {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(74, 49, 133, 0.06);
  border-color: rgba(74, 49, 133, 0.06);
}

/* active (center) styling */
.wsu-active {
  background: linear-gradient(180deg, rgba(77, 33, 133, 0.95), #4b2f84);
  color: #fff;
  border: none;
  transform: translateY(-8px);
  box-shadow: 0 26px 48px rgba(74, 49, 133, 0.12);
}

/* media image inside active card gets darker overlay style */
.wsu-active .wsu-media {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.08));
}
.wsu-active .wsu-title,
.wsu-active .wsu-desc {
  color: rgba(255, 255, 255, 0.95);
}

/* dots */
.wsu-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.wsu-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #cfd4db;
  display: inline-block;
  transition: all 180ms ease;
  border: 0;
}
.wsu-dots .dot.active {
  width: 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, #18b8b3, #1da3c8);
}

/* responsive adjustments */
@media (max-width: 1100px) {
  .wsu-viewport {
    width: calc(360px * 2 + 28px); /* 2 cards + gap */
  }
  .wsu-card {
    flex: 0 0 360px;
    width: 360px;
  }
}

@media (max-width: 700px) {
  .wsu-viewport {
    width: calc(100% - 40px);
  }
  .wsu-card {
    flex: 0 0 100%;
    width: 100%;
  }
  .wsu-row {
    gap: 16px;
  }
  .wsu-arrow {
    display: none;
  }
}
/* -------------------------
   TESTIMONIAL — IMAGE #2 LAYOUT
   ------------------------- */
.testimonial-section {
  position: relative;
  background: #fff;
  overflow: visible;
  padding-top: 72px;
  padding-bottom: 80px;
}

/* header (centered) */
.testimonial-head h2 {
  font-family: var(--heading-font);

  font-size: clamp(28px, 4vw, 36px);
  color: var(--heading-color);
}
.testimonial-sub {
  font-family: var(--body-font);
  color: var(--color-muted);
  margin-top: 8px;
  font-size: 17px;
}

/* main row: left big portrait, right copy */
.testimonial-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 34px;
  position: relative;
  z-index: 5;
}

/* portrait frame (left) */
.testimonial-figure {
  flex: 0 0 auto;
  width: 420px; /* large portrait width — tuned to screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-frame {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: visible;
  display: inline-block;
  filter: drop-shadow(0 18px 40px rgba(74, 49, 133, 0.12));
}

/* main image (circular) */
.portrait-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 40px 60px rgba(20, 20, 40, 0.06);
  background: #f5f5f7;
}

/* teal ring overlapping lower-left */
.teal-ring {
  position: absolute;
  left: -6%;
  bottom: -6%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 10px solid transparent;
  box-sizing: border-box;
  /* create teal outline using conic-gradient for crispness */
  background: conic-gradient(
    from 0deg,
    rgba(24, 184, 179, 0) 0deg,
    rgba(24, 184, 179, 0.95) 120deg,
    rgba(24, 184, 179, 0) 360deg
  );
  transform: rotate(-10deg);
  filter: drop-shadow(0 8px 18px rgba(24, 184, 179, 0.06));
  z-index: 2;
}

/* testimonial copy (to the right of portrait) */
.testimonial-copy {
  flex: 0 0 520px;
  max-width: 520px;
}
.client-name {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--heading-color);
}
.client-feedback {
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.7;
}

/* dot nav aligned below copy text */
.testimonial-nav {
  margin-top: 20px;
}
.testimonial-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}
.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e9eef6;
  display: inline-block;
  transition: all 180ms ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 0;
}
.testimonial-dots .dot.active {
  width: 26px;
  height: 10px;
  border-radius: 12px;
  background: linear-gradient(90deg, #4a3185, #18b8b3);
}

/* right-side graphics: big aqua circle + floating avatars */
.testimonial-graphics {
  position: absolute;
  right: 6%;
  top: 8%;
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: 2;
}

/* pale aqua background circle */
.testimonial-graphics .big-aqua-circle {
  position: absolute;
  right: 40px;
  top: 60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(24, 184, 179, 0.12);
  z-index: 1;
}

/* avatars — absolute placed; white border + subtle shadow */
.testimonial-graphics .avt {
  position: absolute;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 10px 24px rgba(74, 49, 133, 0.08);
  transform: translateZ(0);
  z-index: 3;
  opacity: 1;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
  pointer-events: auto; /* allow clicking avatars to select slides */
  cursor: pointer;
}

/* individual avatar positions (tweak these to match screenshot) */
.avt-1 {
  right: 32px;
  top: 40px;
  width: 140px;
  height: 140px;
} /* large top-right */
.avt-2 {
  right: 70px;
  top: 180px;
  width: 100px;
  height: 100px;
} /* mid-right */
.avt-3 {
  right: 8px;
  bottom: 40px;
  width: 160px;
  height: 160px;
} /* lower-right large */
.avt-4 {
  left: 110px;
  bottom: 80px;
  width: 80px;
  height: 80px;
} /* left small - slightly off canvas */
.avt-5 {
  left: 150px;
  top: 80px;
  width: 80px;
  height: 80px;
} /* top-left small */

/* avatar selected state */
.testimonial-graphics .avt.selected {
  transform: scale(1.06);
  box-shadow: 0 18px 44px rgba(74, 49, 133, 0.12);
  z-index: 4;
}

/* responsive: collapse and center on small screens */
@media (max-width: 1100px) {
  .testimonial-row {
    gap: 28px;
  }
  .testimonial-figure {
    width: 300px;
  }
  .portrait-frame {
    width: 300px;
    height: 300px;
  }
  .testimonial-copy {
    flex: 1 1 auto;
    max-width: none;
  }
  .testimonial-graphics {
    display: none;
  } /* hide decorative avatars on tablet */
}

@media (max-width: 700px) {
  .testimonial-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .portrait-frame {
    width: 220px;
    height: 220px;
  }
  .testimonial-copy {
    margin-top: 18px;
    width: 100%;
  }
  .testimonial-copy .client-name {
    text-align: center;
  }
  .testimonial-graphics {
    display: none;
  }
}

/* -------------------------
       Newsletter block
       ------------------------- */
.newsletter {
  background: linear-gradient(180deg, #4a3185 0%, #452a74 100%);
  border-radius: 18px;
  padding: 56px 40px;
  color: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.newsletter-row {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}

.newsletter-left {
  flex: 1 1 60%;
  min-width: 0;
}
.newsletter-right {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.newsletter h2 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0 0 12px;
  color: #fff;
  font-weight: 700;
  line-height: 1.02;
  text-wrap: balance;
  letter-spacing: -0.5px;
}

.newsletter p.lead {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px;
  font-size: 16px;
  max-width: 740px;
  line-height: 1.65;
}

/* form: long white pill with overlapping circular button */
.subscribe-form {
  position: relative;
  max-width: 760px;
  width: 100%;
}
.input-pill {
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 999px;
  padding: 16px 24px;
  padding-right: 180px; /* space for overlapping circular button */
  border: 0;
  font-size: 15px;
  color: #8a8a8a;
  box-shadow: inset 0 6px 18px rgba(74, 49, 133, 0.06);
  outline: none;
  transition: box-shadow 0.18s ease;
}
.input-pill:focus {
  box-shadow: 0 6px 20px rgba(74, 49, 133, 0.12);
}

/* circular container for button which sits partly outside the pill */
.submit-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 64px;
  min-width: 150px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  pointer-events: auto;
  filter: drop-shadow(0 12px 28px rgba(74, 49, 133, 0.18));
  transition: transform 0.16s ease;
}

/* inner purple pill button to visually match screenshot */
.submit-btn .btn-inner {
  background: var(--btn-bg);
  color: var(--btn-color);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(74, 49, 133, 0.12);
}

.submit-btn:active {
  transform: translateY(-50%) scale(0.99);
}
.submit-btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.08);
}

/* right side circular halo + constrained image */
.newsletter-icon {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.015) 45%,
    transparent 60%
  );
  box-shadow: inset 0 -12px 48px rgba(74, 49, 133, 0.06);
  transition: transform 0.25s ease;
}

.newsletter-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(74, 49, 133, 0.12));
  pointer-events: none;
}

/* rounded corners for wide layout to mimic screenshot outer radius */
.outer-wrap {
  border-radius: 14px;
  overflow: visible;
  padding: 10px; /* creates tiny offset like screenshot */
}
.newsletter {
  border-radius: 12px;
}

/* responsive */
@media (max-width: 980px) {
  .newsletter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .newsletter-right {
    order: 2;
    align-self: center;
    flex: 0 0 auto;
  }
  .newsletter-left {
    order: 1;
  }
  .newsletter-icon {
    width: 180px;
    height: 180px;
  }
  .newsletter-img {
    width: 86px;
    height: 86px;
  }
  .input-pill {
    padding-right: 140px;
  }
  .submit-btn {
    min-width: 120px;
    height: 52px;
    right: 8px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px;
  }
  .newsletter {
    padding: 28px 20px;
  }
  .newsletter h2 {
    font-size: 22px;
  }
  .newsletter p.lead {
    font-size: 14px;
  }
  .input-pill {
    padding-right: 120px;
  }
  .submit-btn {
    min-width: 110px;
    height: 48px;
    right: 6px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0b0711; /* near-black purple used in screenshot */
  color: rgba(255, 255, 255, 0.92);
  padding: 56px 20px 28px;
  font-family: var(--body-font, "Roboto", sans-serif);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.site-footer .container {
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* row */
.footer-row {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

/* columns */
.footer-col {
  flex: 1 1 0;
  min-width: 0;
}

/* brand */
.footer-brand {
  font-family: var(--heading-font, "Rubik", sans-serif);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.2px;
}
.footer-brand .brand-name {
  color: #fff;
}
.footer-brand .brand-accent {
  color: var(--color-secondary, #18b8b3);
  font-weight: 700;
}

/* small description text */
.footer-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
  max-width: 420px;
}

/* quick links heading */
.footer-head {
  font-family: var(--heading-font, "Rubik", sans-serif);
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 18px;
}

/* decorative mini-underline for headings */
.footer-head::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 10px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    var(--color-secondary, #18b8b3),
    #6ad0d0 60%
  );
  box-shadow: 0 6px 18px rgba(24, 184, 179, 0.06);
}

/* link list */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.footer-links li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 15px;
}
.footer-links a:hover {
  color: var(--color-secondary, #18b8b3);
}

/* small triangular bullet accent */
.link-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  transform: rotate(45deg);
  background: linear-gradient(180deg, var(--color-secondary, #18b8b3), #1da3c8);
  border-radius: 2px;
  flex: 0 0 10px;
}

/* contact column styles */
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--color-secondary, #18b8b3), #14a7a0);
  color: #fff;
  flex: 0 0 42px;
  box-shadow: 0 8px 28px rgba(24, 184, 179, 0.08);
}

/* thin divider line */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.03);
  margin: 14px 0 18px;
}

/* bottom copyright row */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* highlighted link in copyright */
.footer-bottom a {
  color: var(--color-secondary, #18b8b3);
  text-decoration: none;
  font-weight: 600;
}

/* responsive: stack columns on narrow screens */
@media (max-width: 920px) {
  .footer-row {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .footer-brand {
    font-size: 26px;
  }
  .footer-right {
    align-self: flex-start;
  }
  .footer-col {
    flex: 1 1 auto;
  }
  .footer-desc {
    max-width: 100%;
  }
}

/* ---------- Menu Styles ---------- */

/* Style for the container matching the rounded dark bar */
.secondary-nav-container {
  /* Dimensions and Background */
  background-color: #2c2c2c; /* A dark gray close to the image */
  border-radius: 50px; /* Highly rounded corners */
  padding: 8px 15px; /* Inner spacing */
  display: flex; /* To contain the list items */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Optional: subtle shadow for depth */
}

/* Style for the unordered list (ul) inside */
.secondary-nav-container .nav {
  flex-wrap: nowrap; /* Ensures items stay in one line */
}

/* Style for the links */
.secondary-nav-link {
  color: #c9c9c9; /* Light gray text color */
  font-weight: 500; /* Medium weight, as seen in the image */
  padding: 5px 15px; /* Padding for the links */
  border-radius: 40px; /* Optional: for a subtle hover effect background */
  transition:
    background-color 0.3s,
    color 0.3s;
}

/* Optional: Hover effect for a touch of interactivity */
.secondary-nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1); /* Slight highlight on hover */
}

/* ---------- Dropdown Menu Styles ---------- */

.top-header .nav .dropdown {
  position: relative;
}

.top-header .nav .dropdown-menu {
  margin-top: 0.5rem;
  min-width: 240px;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 0;
  animation: fadeIn 0.2s ease-out;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--color-body);
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  color: var(--color-primary);
  background-color: rgba(74, 49, 133, 0.05);
}

.dropdown-divider {
  margin: 0.5rem 0;
  opacity: 0.1;
}

/* Updated Dropdown Styles for Hover */
.top-header .nav .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-header .nav .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 0;
}

/* ---------- Mobile header / hero gap fixes ---------- */

/* Remove the extra margin added to the mobile collapse button area */
@media (max-width: 767px) {
  /* If header (site header) is immediately followed by page hero,
     prevent stacked padding doubling */
  .top-header + .top-hero {
    padding-top: 0; /* remove top padding of the second hero */
  }

  /* reduce header/hero vertical padding on narrow screens */
  .top-hero {
    padding-top: 10px; /* was 18px */
    padding-bottom: 18px; /* was 36px */
  }

  /* optional: revert global body padding if it causes layout shift */
  body {
    padding: 0 !important;
  }

  /* tighten hero-inner vertical spacing */
  .hero-inner {
    padding-top: 12px; /* was 20px */
    padding-bottom: 28px; /* was 36px */
  }
}

/* allow dropdown to overflow header */
.header-row,
.top-hero {
  overflow: visible; /* ensure menu isn't clipped */
}

/* style and place the dropdown under the trigger */
.top-header .nav .dropdown {
  position: relative; /* reference for absolute menu */
}
.top-header .nav .dropdown-menu {
  position: absolute !important; /* ensure absolute placement */
  top: calc(100% + 6px); /* a little gap under the link */
  left: 0; /* align with the trigger */
  min-width: 220px; /* suitable menu width */
  z-index: 3000; /* float above other elements */
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* -----------------------------------------
  11. Services Grid Styles (index.html)
------------------------------------------- */
/* Services Grid Container */
.services-grid {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, #fff 0%, rgba(242, 238, 251, 0.3) 100%);
}

/* Service Card Styles */
.services-grid .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74, 49, 133, 0.08);
  transition: all 0.3s ease;
}

.services-grid .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(74, 49, 133, 0.12);
}

/* Service Card Image Container */
.services-grid .service-icon {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.services-grid .service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-grid .service-card:hover .service-icon img {
  transform: scale(1.05);
}

/* Service Card Content */
.services-grid .service-card h3 {
  font-size: 1.5rem;
  color: var(--color-heading);
  margin: 1.5rem 1.5rem 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.services-grid .service-card p {
  margin: 0 1.5rem 1.5rem;
  color: var(--color-body);
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.services-grid .service-card .btn {
  margin: 0 1.5rem 1.5rem;
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .services-grid .service-icon {
    height: 180px;
  }

  .services-grid .service-card h3 {
    font-size: 1.25rem;
    margin: 1.25rem 1.25rem 0.75rem;
  }

  .services-grid .service-card p,
  .services-grid .service-card .btn {
    margin: 0 1.25rem 1.25rem;
  }
}

@media (max-width: 767px) {
  .services-grid .service-icon {
    height: 160px;
  }

  .services-grid .service-card {
    max-width: 480px;
    margin: 0 auto;
  }

  .services-grid .service-card h3 {
    font-size: 1.375rem;
  }
}

@media (max-width: 575px) {
  .services-grid .service-icon {
    height: 140px;
  }

  .services-grid .service-card h3 {
    margin: 1rem 1rem 0.75rem;
  }

  .services-grid .service-card p,
  .services-grid .service-card .btn {
    margin: 0 1rem 1rem;
  }
}

/* ---------- SI Card (services-grid enhancement) ---------- */
.si-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 49, 133, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.06);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 420px;
}

/* media / image area */
.si-media {
  position: relative;
  height: 240px;
  background: linear-gradient(140deg, #f8f9ff 0%, #f0f4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.si-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    140deg,
    rgba(74, 49, 133, 0.03) 0%,
    rgba(57, 184, 225, 0.03) 100%
  );
}

.si-media img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  display: block;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.si-card:hover .si-media img {
  transform: scale(1.05) translateY(-2px);
}

/* small rounded badge in corner of image */
.si-badges {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.si-badges .badge {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 30px;
  background: linear-gradient(
    140deg,
    rgba(74, 49, 133, 0.08) 0%,
    rgba(57, 184, 225, 0.08) 100%
  );
  color: var(--color-primary);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgb(0, 0, 0);
  border: 1px solid rgba(74, 49, 133, 0.06);
  backdrop-filter: blur(6px);
}

/* card body */
.si-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* title & subtext */
.si-title {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--heading-color);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.si-sub {
  margin: 0;
  color: var(--body-color);
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* meta tags under description */
.si-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto; /* push actions to bottom */
}
.si-tag {
  background: rgba(74, 49, 133, 0.06);
  color: var(--color-heading);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(74, 49, 133, 0.04);
}

/* actions row */
.si-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  justify-content: flex-start;
}
.si-actions .btn {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: none;
}
.si-actions .btn.cta-btn {
  background: linear-gradient(90deg, var(--btn-bg), var(--color-secondary));
  border: 0;
  color: #fff;
}
.si-actions .btn.btn-outline-teal {
  background: transparent;
  border: 1.5px solid rgba(24, 184, 179, 0.14);
  color: var(--color-primary);
}

/* featured card variant (subtle accent) */
.service-featured-card {
  background: linear-gradient(180deg, rgba(77, 33, 133, 0.03), #fff);
  border: 1px solid rgba(74, 49, 133, 0.06);
  box-shadow: 0 14px 48px rgba(74, 49, 133, 0.06);
}
.service-featured-card .si-title {
  color: var(--color-primary);
}

/* small responsive tweaks to preserve existing layout rules */
@media (max-width: 991.98px) {
  .si-media {
    height: 180px;
  }
  .si-card {
    min-height: 320px;
  }
}
@media (max-width: 575.98px) {
  .si-media {
    height: 140px;
  }
  .si-card {
    min-height: auto;
  }
  .si-actions {
    justify-content: stretch;
    flex-direction: column;
    gap: 8px;
  }
  .si-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* accessibility: focus styles */
.si-card:focus-within,
.si-card:focus {
  outline: 3px solid rgba(74, 49, 133, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(74, 49, 133, 0.08);
}

/* small polish for badges that sit in the top-right if you want later */
.si-media .top-right {
  position: absolute;
  right: 12px;
  top: 12px;
}

/* ---------- WHY CHOOSE US — cards and layout ---------- */
.why-choose-us {
  background: linear-gradient(180deg, rgba(242, 238, 251, 0.35), #fff);
  border-radius: 12px;
  padding: 56px 24px;
  box-shadow: 0 10px 30px rgba(74, 49, 133, 0.04);
}

/* text column */
.why-choose-us .edge-title {
  font-size: clamp(26px, 3.6vw, 36px);
  margin-bottom: 12px;
  color: var(--heading-color);
}
.why-choose-us .edge-desc {
  color: var(--color-body);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

/* feature list */
.wc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: grid;
  gap: 12px;
}
.wc-features li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wc-features strong {
  font-weight: 600;
  color: var(--heading-color);
}
.wc-features .muted {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* action buttons spacing */
.why-choose-us .cta-btn {
  margin-right: 12px;
  padding: 12px 20px;
}

/* cards grid (right column) */
.wc-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

/* single card */
.wc-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(74, 49, 133, 0.04);
  box-shadow: 0 8px 24px rgba(74, 49, 133, 0.04);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}
.wc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(74, 49, 133, 0.06);
}

.wc-card-media {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(24, 184, 179, 0.06),
    rgba(74, 49, 133, 0.02)
  );
  border: 1px solid rgba(74, 49, 133, 0.03);
}
.wc-card-media img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.wc-card-body h4 {
  margin: 0 0 6px;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  color: var(--heading-color);
}
.wc-card-body p {
  margin: 0;
  color: var(--color-body);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Two-column layout for cards on wide screens: stack 2x2 visually */
@media (min-width: 992px) {
  .wc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 767.98px) {
  .wcu-buttons {
    text-align: center;
  }
  .wcu-buttons a {
    margin-bottom: 10px;
  }
  .why-choose-us {
    padding: 32px 12px;
  }
  .wc-cards-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-us .edge-title {
    text-align: center;
  }
  .why-choose-us .edge-desc,
  .wc-features {
    text-align: center;
  }
  .wc-features .muted {
    display: none;
  } /* shorten mobile copy */
}

/* End of stylesheet */
