.pa-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #050f2e;
}

/* ---- BG IMAGE ---- */
.pa-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: blur(0.5px) brightness(0.55);
  transform: scale(1.04);
  z-index: 0;
}

/* ---- OVERLAY ---- */
.pa-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3, 12, 40, 0.88) 0%,
    rgba(3, 12, 40, 0.82) 38%,
    rgba(3, 18, 50, 0.52) 62%,
    rgba(5, 30, 60, 0.32) 100%
  );
  z-index: 1;
}

/* ---- BODY ---- */
.pa-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 100px 0 56px;
}

.pa-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ---- GRID ---- */
.pa-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: start;
}

/* ---- LABEL BADGE ---- */
.pa-label {
  display: inline-block;
  background: rgba(15, 155, 142, 0.12);
  border: 1px solid rgba(15, 155, 142, 0.38);
  color: rgb(15, 155, 142);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ---- TITLE ---- */
.pa-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  line-height: 1.18;
}

.pa-title-line {
  color: #ffffff;
  font-size: clamp(26px, 2.9vw, 42px);
  font-weight: 700;
  letter-spacing: -0.015em;
  display: block;
}

.pa-title-accent {
  color: rgb(15, 155, 142);
  font-size: clamp(26px, 2.9vw, 42px);
  font-weight: 700;
  letter-spacing: -0.015em;
  display: block;
}

/* Slide-in */
.pa-slidein {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.pa-slidein.pa-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- DESC ---- */
.pa-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.72;
  margin-bottom: 28px;
}

/* ---- BUTTONS ---- */
.pa-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pa-btn-primary {
  background: rgb(15, 155, 142);
  color: #ffffff !important;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition:
    background 0.22s,
    transform 0.18s;
  white-space: nowrap;
}
.pa-btn-primary:hover {
  background: rgb(11, 128, 116);
  transform: translateY(-2px);
  color: #fff !important;
}

.pa-btn-secondary {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 11px 24px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition:
    border-color 0.22s,
    color 0.22s,
    transform 0.18s;
  white-space: nowrap;
}
.pa-btn-secondary:hover {
  border-color: rgb(15, 155, 142);
  color: rgb(15, 155, 142) !important;
  transform: translateY(-2px);
}

/* ---- RIGHT CARDS ---- */
.pa-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pa-card {
  border-radius: 7px;
  padding: 16px 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.pa-card.pa-visible {
  opacity: 1;
  transform: translateX(0);
}

.pa-card--red {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 55, 55, 0.28);
}
.pa-card--teal {
  background: rgba(15, 155, 142, 0.1);
  border: 1px solid rgba(15, 155, 142, 0.32);
}
.pa-card--glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* ---- CARD HEADER ---- */
.pa-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.pa-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pa-dot-red {
  background: #e04848;
}
.pa-dot-teal {
  background: rgb(15, 155, 142);
}
.pa-dot-white {
  background: rgba(255, 255, 255, 0.55);
}

.pa-card-title {
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.88;
}

/* ---- CARD LIST ---- */
.pa-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 10px;
}

.pa-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12.5px;
  line-height: 1.38;
}

.pa-item--red {
  color: rgba(255, 195, 195, 0.82);
}
.pa-item--teal {
  color: rgba(195, 255, 248, 0.85);
}
.pa-item--white {
  color: rgba(255, 255, 255, 0.8);
}

.pa-icon-red {
  color: #e04848;
  font-size: 7px;
  margin-top: 4px;
  flex-shrink: 0;
}

.pa-chk {
  color: rgb(15, 155, 142);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pa-chk--white {
  color: rgba(255, 255, 255, 0.65);
}

/* ---- TICKER ---- */
.pa-ticker {
  position: relative;
  z-index: 2;
  background: rgba(15, 155, 142, 0.15);
  border-top: 1px solid rgba(15, 155, 142, 0.28);
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pa-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: pa-scroll 26s linear infinite;
}

.pa-ticker-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 28px;
  position: relative;
}
.pa-ticker-item::after {
  content: "·";
  position: absolute;
  right: 0;
  color: rgb(15, 155, 142);
  transform: translateX(50%);
}

@keyframes pa-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   1000px
   ============================================================ */
@media (max-width: 1000px) {
  .pa-body {
    padding: 86px 0 44px;
  }
  .pa-container {
    padding: 0 24px;
  }

  .pa-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pa-title-line,
  .pa-title-accent {
    font-size: clamp(24px, 4vw, 36px);
  }

  .pa-card-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   700px
   ============================================================ */
@media (max-width: 700px) {
  .pa-body {
    padding: 72px 0 32px;
    align-items: flex-start;
  }

  .pa-container {
    padding: 0 16px;
  }

  .pa-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* LEFT */
  .pa-left {
    text-align: left;
  }

  .pa-label {
    font-size: 10.5px;
    padding: 3px 11px;
    margin-bottom: 14px;
  }

  .pa-title {
    margin-bottom: 12px;
  }

  .pa-title-line,
  .pa-title-accent {
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.2;
  }

  .pa-desc {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .pa-btns {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .pa-btn-primary,
  .pa-btn-secondary {
    text-align: center;
    width: 100%;
    padding: 13px 20px;
    font-size: 13px;
    box-sizing: border-box;
  }

  /* RIGHT CARDS */
  .pa-right {
    gap: 10px;
  }

  .pa-card {
    padding: 13px 14px;
  }

  .pa-card-header {
    margin-bottom: 8px;
  }

  .pa-card-title {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .pa-card-list {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .pa-item {
    font-size: 12px;
    line-height: 1.35;
    gap: 6px;
  }

  /* TICKER */
  .pa-ticker {
    height: 38px;
  }

  .pa-ticker-item {
    font-size: 10px;
    padding: 0 18px;
    letter-spacing: 0.08em;
  }
}

.phtc-section {
  background: #ffffff;
  padding: 60px 60px;
}

.phtc-wrap {
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 56px;
}

/* ---- LEFT COL ---- */
.phtc-left {
  flex: 0 0 50%;
  max-width: 50%;
}

.phtc-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}

.phtc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* dark overlay */
.phtc-img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 28, 64, 0.55) 0%,
    rgba(6, 28, 64, 0.2) 50%,
    rgba(10, 60, 80, 0.6) 100%
  );
  border-radius: 20px;
}

/* overlay text */
.phtc-img-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 2;
}

.phtc-overlay-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d9e8a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.phtc-overlay-tag span {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: phtc-pulse 1.6s infinite;
}

@keyframes phtc-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* ---- RIGHT COL ---- */
.phtc-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phtc-eyebrow {
  display: inline-block;
  color: #0d9e8a;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.phtc-heading {
  font-size: 32px;
  font-weight: 800;
  color: #061c40;
  line-height: 1.2;
  margin-bottom: 10px;
}

.phtc-heading span {
  color: #0d9e8a;
}

.phtc-desc {
  font-size: 14.5px;
  color: #4a6080;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}

/* 6 TOPIC CARDS */
.phtc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.phtc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1.5px solid #dde8f5;
  border-radius: 14px;
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.26s cubic-bezier(0.34, 1.3, 0.64, 1),
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease;
  cursor: default;
}

/* left accent line */
.phtc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  background: #0d9e8a;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.phtc-card:hover {
  transform: translateX(5px);
  background: #f0fbf9;
  border-color: #0d9e8a;
  box-shadow: 0 6px 24px rgba(13, 158, 138, 0.12);
}

.phtc-card:hover::before {
  transform: scaleY(1);
}

/* icon circle */
.phtc-cicon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e6f8f5;
  border: 1.5px solid #b0e8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition:
    background 0.26s,
    border-color 0.26s,
    transform 0.26s;
}

.phtc-card:hover .phtc-cicon {
  background: #0d9e8a;
  border-color: #0d9e8a;
  transform: rotate(-8deg) scale(1.1);
  font-size: 20px;
}

.phtc-cicon svg {
  width: 22px;
  height: 22px;
  stroke: #0d9e8a;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.26s;
}

.phtc-card:hover .phtc-cicon svg {
  stroke: #ffffff;
}

.phtc-ctitle {
  font-size: 13.5px;
  font-weight: 700;
  color: #061c40;
  line-height: 1.3;
  transition: color 0.22s;
}

.phtc-card:hover .phtc-ctitle {
  color: #0d7a6a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .phtc-section {
    padding: 60px 32px;
  }

  .phtc-wrap {
    flex-direction: column;
    gap: 36px;
  }

  .phtc-left {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .phtc-img-box {
    min-height: 360px;
  }

  .phtc-heading {
    font-size: 26px;
  }

  .phtc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .phtc-section {
    padding: 60px 18px;
  }

  .phtc-img-box {
    min-height: 260px;
  }

  .phtc-img-overlay {
    bottom: 20px;
    left: 20px;
  }

  .phtc-heading {
    font-size: 22px;
  }

  .phtc-desc {
    font-size: 13.5px;
    margin-bottom: 22px;
  }

  .phtc-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 11px;
  }

  .phtc-card {
    padding: 13px 14px;
    gap: 11px;
  }

  .phtc-cicon {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .phtc-ctitle {
    font-size: 12.5px;
  }
}







.oap__section {
        background: #0b1e50;
        padding: 60px 60px;
        position: relative;
        overflow: hidden;
      }

      /* Background decorative blobs */
      .oap__blob {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
      }
      .oap__blob--1 {
        width: 520px;
        height: 520px;
        top: -180px;
        left: -140px;
        background: radial-gradient(
          circle,
          rgba(26, 158, 126, 0.13) 0%,
          transparent 70%
        );
      }
      .oap__blob--2 {
        width: 440px;
        height: 440px;
        bottom: -160px;
        right: -100px;
        background: radial-gradient(
          circle,
          rgba(26, 58, 140, 0.35) 0%,
          transparent 70%
        );
      }
      .oap__blob--3 {
        width: 300px;
        height: 300px;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: radial-gradient(
          circle,
          rgba(26, 158, 126, 0.07) 0%,
          transparent 70%
        );
      }

      /* ===== Header ===== */

      .oap__header {
        text-align: center;
        margin-bottom: 72px;
        position: relative;
        z-index: 2;
      }

      .oap__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: 3.5px;
        text-transform: uppercase;
        color: #1a9e7e;
        margin-bottom: 20px;
      }

      .oap__title {
        font-size: 40px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.18;
        margin: 0 0 20px;
      }

      .oap__title em {
        font-style: normal;
        color: #1a9e7e;
      }

      .oap__subtitle {
        font-size: 15.5px;
        color: rgba(255, 255, 255, 0.58);
        line-height: 1.75;
        max-width: 600px;
        margin: 0 auto;
      }

      /* ===== Grid ===== */

      .oap__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
        max-width: 1180px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
      }

      /* ===== Card ===== */

      .oap__card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 18px;
        padding: 38px 30px 34px;
        position: relative;
        overflow: hidden;
        cursor: default;
        transition:
          background 0.4s ease,
          border-color 0.4s ease,
          transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.4s ease;
      }

      /* Shimmer line top */
      .oap__card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2.5px;
        background: linear-gradient(90deg, transparent, #1a9e7e, transparent);
        opacity: 0;
        transform: scaleX(0.4);
        transition:
          opacity 0.4s ease,
          transform 0.4s ease;
        border-radius: 18px 18px 0 0;
      }

      /* Glow corner */
      .oap__card::after {
        content: "";
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(26, 58, 140, 0) 0%,
          transparent 70%
        );
        transition: background 0.4s ease;
        pointer-events: none;
      }

      .oap__card:hover {
        background: #1a3a8c;
        border-color: rgba(26, 158, 126, 0.4);
        transform: translateY(-10px) scale(1.015);
        box-shadow:
          0 32px 64px rgba(10, 20, 60, 0.55),
          0 0 0 1px rgba(26, 158, 126, 0.25),
          inset 0 1px 0 rgba(255, 255, 255, 0.08);
      }

      .oap__card:hover::before {
        opacity: 1;
        transform: scaleX(1);
      }

      .oap__card:hover::after {
        background: radial-gradient(
          circle,
          rgba(26, 158, 126, 0.12) 0%,
          transparent 70%
        );
      }

      /* ===== Phase tag ===== */


      .oap__card:hover .oap__phase-tag {
        background: rgba(26, 158, 126, 0.2);
        border-color: rgba(26, 158, 126, 0.55);
        color: #5cd8b8;
      }

      /* ===== Icon ===== */

      .oap__icon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        background: rgba(26, 158, 126, 0.1);
        border: 1px solid rgba(26, 158, 126, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
        transition:
          background 0.4s ease,
          border-color 0.4s ease,
          transform 0.34s ease;
      }

      .oap__card:hover .oap__icon {
        background: rgba(26, 158, 126, 0.22);
        border-color: rgba(26, 158, 126, 0.5);
        transform: rotate(-4deg) scale(1.1);
      }

      .oap__icon svg {
        width: 26px;
        height: 26px;
        stroke: #1a9e7e;
        stroke-width: 1.8;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.4s ease;
      }

      .oap__card:hover .oap__icon svg {
        stroke: #5cd8b8;
      }

      /* ===== Card text ===== */

      .oap__card-title {
        font-size: 19px;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 10px;
        letter-spacing: 0.1px;
        transition: color 0.34s ease;
      }

      .oap__card:hover .oap__card-title {
        color: #5cd8b8;
      }

      .oap__card-desc {
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.65;
        margin: 0 0 24px;
        transition: color 0.34s ease;
      }

      .oap__card:hover .oap__card-desc {
        color: rgba(255, 255, 255, 0.68);
      }

      /* Divider */
      .oap__divider-line {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.07);
        margin-bottom: 20px;
        transition: background 0.4s ease;
      }

      .oap__card:hover .oap__divider-line {
        background: rgba(26, 158, 126, 0.25);
      }

      /* ===== Feature list ===== */

      .oap__features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .oap__features li {
        display: flex;
        align-items: center;
        gap: 11px;
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.72);
        font-weight: 500;
        transition:
          color 0.34s ease,
          gap 0.28s ease;
      }

      .oap__card:hover .oap__features li {
        color: rgba(255, 255, 255, 0.9);
      }

      .oap__check {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(26, 158, 126, 0.14);
        border: 1px solid rgba(26, 158, 126, 0.24);
        display: flex;
        align-items: center;
        justify-content: center;
        transition:
          background 0.4s ease,
          border-color 0.4s ease,
          transform 0.28s ease;
      }

      .oap__card:hover .oap__check {
        background: rgba(26, 158, 126, 0.3);
        border-color: rgba(26, 158, 126, 0.6);
        transform: scale(1.12);
      }

      .oap__check svg {
        width: 10px;
        height: 10px;
        stroke: #1a9e7e;
        stroke-width: 2.5;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.4s ease;
      }

      .oap__card:hover .oap__check svg {
        stroke: #5cd8b8;
      }

      /* ===== Responsive ===== */

      @media (max-width: 1000px) {
        .oap__section {
          padding: 72px 28px;
        }
        .oap__grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }
        .oap__title {
          font-size: 34px;
        }
        .oap__header {
          margin-bottom: 54px;
        }
      }

      @media (max-width: 700px) {
        .oap__section {
          padding: 56px 16px;
        }
        .oap__grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }
        .oap__title {
          font-size: 26px;
          line-height: 1.25;
        }
        .oap__subtitle {
          font-size: 14px;
        }
        .oap__card {
          padding: 28px 22px 26px;
        }
        .oap__card:hover {
          transform: translateY(-5px) scale(1.008);
        }
        .oap__header {
          margin-bottom: 40px;
        }
        .oap__eyebrow {
          font-size: 10px;
          letter-spacing: 2.5px;
        }
        .oap__card-title {
          font-size: 17px;
        }
      }



         .oas__section {
        background: #ffffff;
        padding: 60px 60px;
        overflow: hidden;
      }

     
      .oas__header {
        text-align: center;
        padding: 0 40px;
        margin-bottom: 64px;
      }
      .oas__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3.5px;
        text-transform: uppercase;
        color: #1a9e7e;
        margin-bottom: 16px;
      }
      .oas__title {
        font-size: 40px;
        font-weight: 700;
        color: #0b1e50;
        line-height: 1.18;
        margin: 0 0 18px;
      }
      .oas__title em {
        font-style: normal;
        color: #1a9e7e;
      }
      .oas__subtitle {
        font-size: 15.5px;
        color: #6b7a99;
        line-height: 1.75;
        max-width: 680px;
        margin: 0 auto;
      }

      /* ===== LAYOUT WRAPPER ===== */
      .oas__layout {
        display: flex;
        align-items: stretch;
        min-height: 680px;
      }

      /* LEFT: cards column ~66.66% */
      .oas__left {
        flex: 0 0 66.666%;
        max-width: 66.666%;
        padding: 0 48px 80px 48px;
        position: relative;
      }

      /* RIGHT: image column ~33.33% */
      .oas__right {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        position: sticky;
        top: 0;
        height: 100vh;
        max-height: 860px;
        overflow: hidden;
        background: #0b1e50;
      }

      /* Image slider */
      .oas__img-slider {
        position: relative;
        width: 100%;
        height: 100%;
      }
      .oas__img-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.7s ease;
        display: flex;
        flex-direction: column;
        overflow: hidden;
      }
      .oas__img-slide.oas--active {
        opacity: 1;
        z-index: 2;
      }
      .oas__img-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.72) saturate(1.1);
        transition: transform 6s ease;
        transform: scale(1.04);
      }
      .oas__img-slide.oas--active img {
        transform: scale(1);
      }

      /* Overlay gradient on image */
      .oas__img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          rgba(11, 30, 80, 0.2) 0%,
          rgba(11, 30, 80, 0.1) 40%,
          rgba(11, 30, 80, 0.7) 100%
        );
        z-index: 3;
      }

      /* Slide label at bottom of image */
      .oas__slide-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 4;
        padding: 28px 26px 26px;
        background: linear-gradient(
          to top,
          rgba(11, 30, 80, 0.92) 0%,
          transparent 100%
        );
      }

      .oas__slide-title {
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.35;
      }

      /* Progress bar */
      .oas__progress-bar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: rgba(255, 255, 255, 0.15);
        z-index: 10;
      }
      .oas__progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #1a9e7e, #5cd8b8);
        width: 0%;
        transition: width linear;
        border-radius: 0 2px 2px 0;
      }

      /* Dot indicators */
      .oas__dots {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        display: flex;
        flex-direction: column;
        gap: 7px;
      }
      .oas__dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition:
          background 0.3s,
          transform 0.3s;
      }
      .oas__dot.oas--active {
        background: #1a9e7e;
        transform: scale(1.4);
      }

      /* ===== CARDS ===== */
      .oas__cards {
        display: flex;
        flex-direction: column;
        gap: 0;
      }

      .oas__card {
        display: flex;
        align-items: flex-start;
        gap: 0;
        border-bottom: 1px solid #e8ecf4;
        padding: 30px 0;
        cursor: pointer;
        position: relative;
        transition: background 0.3s;
        padding-left: 20px;
        padding-right: 20px;
      }
      .oas__card:first-child {
        border-top: 1px solid #e8ecf4;
      }

      /* Left accent line */
      .oas__card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #1a9e7e;
        border-radius: 0 2px 2px 0;
        opacity: 0;
        transition: opacity 0.32s;
      }
      .oas__card.oas--active::before,
      .oas__card:hover::before {
        opacity: 1;
      }
      .oas__card.oas--active {
        background: linear-gradient(
          90deg,
          rgba(26, 158, 126, 0.05) 0%,
          transparent 60%
        );
      }

      .oas__card.oas--active .oas__num-circle,
      .oas__card:hover .oas__num-circle {
        background: #1a3a8c;
        border-color: #1a3a8c;
        color: #ffffff;
      }

      /* Icon box */
      .oas__card-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: #f0faf6;
        border: 1px solid #c2e8da;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 18px;
        transition:
          background 0.32s,
          border-color 0.32s,
          transform 0.28s;
      }
      .oas__card.oas--active .oas__card-icon,
      .oas__card:hover .oas__card-icon {
        background: #1a9e7e;
        border-color: #1a9e7e;
        transform: scale(1.07);
      }
      .oas__card-icon svg {
        width: 22px;
        height: 22px;
        stroke: #1a9e7e;
        stroke-width: 1.8;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.32s;
      }
      .oas__card.oas--active .oas__card-icon svg,
      .oas__card:hover .oas__card-icon svg {
        stroke: #ffffff;
      }

      /* Card body */
      .oas__card-body {
        flex: 1;
        min-width: 0;
      }

      /* Header row */
      .oas__card-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
        cursor: pointer;
      }
      .oas__card-title {
        font-size: 15.5px;
        font-weight: 700;
        color: #0b1e50;
        line-height: 1.3;
        transition: color 0.28s;
      }
      .oas__card.oas--active .oas__card-title,
      .oas__card:hover .oas__card-title {
        color: #1a3a8c;
      }
      .oas__card-subtitle {
        font-size: 12px;
        color: #8a96b0;
        margin-top: 3px;
        font-weight: 400;
      }
      .oas__card-arrow {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1.5px solid #d0d9f0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 12px;
        transition:
          background 0.3s,
          border-color 0.3s,
          transform 0.3s;
      }
      .oas__card.oas--active .oas__card-arrow,
      .oas__card:hover .oas__card-arrow {
        background: #1a3a8c;
        border-color: #1a3a8c;
        transform: rotate(90deg);
      }
      .oas__card-arrow svg {
        width: 12px;
        height: 12px;
        stroke: #8a96b0;
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.28s;
      }
      .oas__card.oas--active .oas__card-arrow svg,
      .oas__card:hover .oas__card-arrow svg {
        stroke: #ffffff;
      }

      /* Expandable features */
      .oas__card-features {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
          opacity 0.32s ease,
          margin-top 0.32s;
        opacity: 0;
        margin-top: 0;
      }
      .oas__card.oas--active .oas__card-features {
        max-height: 320px;
        opacity: 1;
        margin-top: 16px;
      }
      .oas__features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 16px;
      }
      .oas__feat {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: #4a5578;
        line-height: 1.45;
      }
      .oas__feat-dot {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: rgba(26, 158, 126, 0.12);
        border: 1px solid rgba(26, 158, 126, 0.28);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1px;
      }
      .oas__feat-dot svg {
        width: 8px;
        height: 8px;
        stroke: #1a9e7e;
        stroke-width: 2.5;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      /* Timer bar under active card */
      .oas__timer-bar {
        height: 2px;
        background: #e8ecf4;
        margin-top: 14px;
        border-radius: 2px;
        overflow: hidden;
        display: none;
      }
      .oas__card.oas--active .oas__timer-bar {
        display: block;
      }
      .oas__timer-fill {
        height: 100%;
        background: linear-gradient(90deg, #1a9e7e, #1a3a8c);
        width: 0%;
        transition: width linear;
        border-radius: 2px;
      }

      @media (max-width: 1000px) {
        .oas__section {
          padding: 72px 0 0;
        }
        .oas__header {
          padding: 0 28px;
          margin-bottom: 48px;
        }
        .oas__title {
          font-size: 32px;
        }
        .oas__layout {
          flex-direction: column;
          min-height: auto;
        }
        .oas__left {
          flex: none;
          max-width: 100%;
          padding: 0 28px 52px;
          order: 2;
        }
        .oas__right {
          flex: none;
          max-width: 100%;
          width: 100%;
          height: 360px;
          max-height: 360px;
          position: relative;
          order: 1;
        }
        .oas__dots {
          flex-direction: row;
          right: auto;
          top: auto;
          bottom: 50px;
          left: 50%;
          transform: translateX(-50%);
        }
        .oas__features-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 700px) {
        .oas__section {
          padding: 52px 0 0;
        }
        .oas__header {
          padding: 0 16px;
          margin-bottom: 36px;
        }
        .oas__title {
          font-size: 25px;
          line-height: 1.25;
        }
        .oas__subtitle {
          font-size: 14px;
        }
        .oas__left {
          padding: 0 16px 40px;
        }
        .oas__right {
          height: 260px;
          max-height: 260px;
        }
        .oas__card {
          padding: 30px 30px;
        }
        .oas__card-title {
          font-size: 14px;
        }
        .oas__card-subtitle {
          font-size: 11.5px;
        }
        .oas__card-icon {
          width: 42px;
          height: 42px;
          margin-right: 14px;
        }
        .oas__num-circle {
          width: 30px;
          height: 30px;
          font-size: 11px;
        }

        .oas__features-grid {
          grid-template-columns: 1fr;
          gap: 7px;
        }
        .oas__feat {
          font-size: 12.5px;
        }
      }






        
        .section-wrapper {
            display: flex;
            align-items: center;
            padding: 60px 60px;
            background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
            color: #f8fafc;
            overflow-x: hidden;
        }

        .section-layout {
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .section-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
            
            margin: 0 auto;
            animation: fadeInUp 0.8s ease-out both;
        }

        .header-divider {
            margin: 0 auto;
        }

        
        .section-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .col-xl-6 {
            width: 100%;
        }

        .section-left-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
            animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .header-title {
       
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -1px;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-title-accent {
            background: linear-gradient(135deg, #86efac, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        
        .header-description {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            font-weight: 300;
            letter-spacing: 0.3px;
        }

      
        .section-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            animation: fadeInUp 0.9s ease-out 0.3s both;
        }

      
        .feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 24px;
            border-radius: 14px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
            z-index: 0;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px) translateX(-4px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(134, 239, 172, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #86efac, #4ade80);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(134, 239, 172, 0.3);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(134, 239, 172, 0.5);
        }

        .feature-name {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #ffffff;
            position: relative;
            z-index: 1;
        }

        .feature-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }

        .section-right-image {
            display: flex;
            justify-content: center;
            animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .image-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            width: 100%;
            max-width: 420px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
            border-color: rgba(134, 239, 172, 0.5);
        }

        .image-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .image-card:hover .image-card-img {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(5, 46, 41, 0.9) 100%);
            padding: 20px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
        }

        .image-card:hover .image-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .image-overlay-label {
            color: #86efac;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1000px) {
            .section-wrapper {
                padding: 40px 20px;
            }

            .section-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .header-title {
                font-size: 2.8rem;
            }

            .header-description {
                font-size: 1rem;
            }

            .section-features {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .feature-card {
                padding: 20px;
            }

            .feature-icon {
                width: 55px;
                height: 55px;
                font-size: 1.8rem;
            }

            .feature-name {
                font-size: 0.95rem;
            }

            .feature-text {
                font-size: 0.8rem;
            }

            .image-card {
                max-width: 100%;
                width: 100%;
                height: 280px;
            }

            .image-overlay-label {
                font-size: 0.9rem;
            }
        }

       
        
        @media (max-width: 700px) {
            .section-wrapper {
                padding: 30px 16px;
                min-height: auto;
            }

            .section-row {
                grid-template-columns: 1fr;
                gap: 35px;
                align-items: stretch;
            }

            .header-title {
                font-size: 2.2rem;
                letter-spacing: -0.5px;
            }

            .header-description {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .header-divider {
                width: 50px;
                height: 3px;
            }

            .section-features {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .feature-card {
                padding: 18px;
                border-radius: 12px;
            }

            .feature-card:hover {
                transform: translateY(-6px) translateX(-2px);
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.6rem;
                margin-bottom: 10px;
            }

            .feature-name {
                font-size: 0.9rem;
                margin-bottom: 6px;
            }

            .feature-text {
                font-size: 0.75rem;
            }

            .image-card {
                max-width: 100%;
                width: 100%;
                height: 240px;
                border-radius: 12px;
            }

            .image-overlay {
                padding: 16px;
            }

            .image-overlay-label {
                font-size: 0.85rem;
            }
        }

       
        @media (max-width: 480px) {
            .section-wrapper {
                padding: 25px 12px;
            }

            .header-title {
                font-size: 1.8rem;
            }

            .header-description {
                font-size: 0.9rem;
            }

            .section-features {
                gap: 12px;
            }

            .feature-card {
                padding: 14px;
                border-radius: 10px;
            }

            .feature-icon {
                width: 45px;
                height: 45px;
                font-size: 1.4rem;
                margin-bottom: 8px;
            }

            .feature-name {
                font-size: 0.85rem;
            }

            .feature-text {
                font-size: 0.7rem;
                line-height: 1.4;
            }

            .image-card {
                height: 200px;
                border-radius: 10px;
                max-width: 100%;
            }

            .image-overlay {
                padding: 12px;
            }

            .image-overlay-label {
                font-size: 0.8rem;
            }
        }




       .why2-wrapper {
        display: flex;
        align-items: center;
        padding: 60px 60px;
        background: #ffffff;
        color: #0f1f3d;
        overflow-x: hidden;
      }

      .why2-layout {
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 50px;
      }

      .why2-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
        animation: fadeInUp 0.8s ease-out both;
      }

      .why2-eyebrow {
        color: #0d9488;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 14px;
      }

      .why2-title {
        font-size: 2.6rem;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -1px;
        color: #0f1f3d;
        margin: 0 0 18px 0;
      }

      .why2-title-accent {
        background: linear-gradient(135deg, #0d9488, #0f766e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
      }

      .why2-divider {
        width: 60px;
        height: 4px;
        border-radius: 4px;
        background: linear-gradient(135deg, #0d9488, #0f766e);
        margin: 0 auto;
      }

      .why2-row {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: center;
      }

      .why2-col {
        width: 100%;
      }

   
      .why2-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .why2-card {
        background: #0f1f3d;
        border: 1px solid rgba(13, 148, 136, 0.25);
        padding: 22px;
        border-radius: 14px;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }

      .why2-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(13, 148, 136, 0.15),
          transparent
        );
        transition: left 0.6s ease;
        z-index: 0;
      }

      .why2-card:hover::before {
        left: 100%;
      }

      .why2-card:hover {
        transform: translateY(-8px) scale(1.02);
        background: #122347;
        border-color: rgba(13, 148, 136, 0.6);
        box-shadow: 0 20px 40px rgba(15, 31, 61, 0.25);
      }

      .why2-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #0d9488, #0f766e);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 14px;
        position: relative;
        z-index: 1;
        box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .why2-card:hover .why2-icon {
        transform: scale(1.12) rotate(8deg);
        box-shadow: 0 6px 20px rgba(13, 148, 136, 0.6);
      }

      .why2-card-title {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: #ffffff;
        position: relative;
        z-index: 1;
        line-height: 1.35;
      }

      .why2-card-text {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.5;
        position: relative;
        z-index: 1;
      }

      .why2-images {
        display: flex;
        flex-direction: column;
        gap: 18px;
        justify-content: center;
        align-items: center;
      }

      .why2-image-card {
        position: relative;
        overflow: hidden;
        background: #0f1f3d;
        border: 1px solid rgba(13, 148, 136, 0.25);
        border-radius: 18px;
        box-shadow: 0 15px 35px rgba(15, 31, 61, 0.15);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        width: 100%;
        max-width: 380px;
        height: 210px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .why2-image-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 55px rgba(15, 31, 61, 0.28);
        border-color: rgba(13, 148, 136, 0.65);
      }

      .why2-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: saturate(1.05) contrast(1.02);
        transition:
          transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
          filter 0.5s ease;
      }

      .why2-image-card:hover img {
        transform: scale(1.08);
        filter: saturate(1.15) contrast(1.05);
      }

      .why2-image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(
          180deg,
          transparent 0%,
          rgba(15, 31, 61, 0.92) 100%
        );
        padding: 18px 20px;
        transform: translateY(12px);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 2;
      }

      .why2-image-card:hover .why2-image-overlay {
        transform: translateY(0);
        opacity: 1;
      }

      .why2-image-overlay-label {
        color: #4ade80;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.5px;
      }

      .why2-image-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0);
        transition: box-shadow 0.4s ease;
        pointer-events: none;
        z-index: 1;
      }

      .why2-image-card:hover::after {
        box-shadow: inset 0 0 0 2px rgba(74, 222, 128, 0.5);
      }

      @keyframes slideInLeft {
        from {
          opacity: 0;
          transform: translateX(-50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @media (max-width: 1000px) {
        .why2-wrapper {
          padding: 45px 24px;
        }
        .why2-title {
          font-size: 2.1rem;
        }
        .why2-row {
          grid-template-columns: 1fr;
          gap: 36px;
        }
        .why2-cards {
          grid-template-columns: 1fr 1fr;
          gap: 16px;
        }
        .why2-card {
          padding: 18px;
        }
        .why2-icon {
          width: 44px;
          height: 44px;
          font-size: 1.3rem;
        }
        .why2-card-title {
          font-size: 0.9rem;
        }
        .why2-card-text {
          font-size: 0.78rem;
        }
        .why2-images {
          flex-direction: row;
          flex-wrap: wrap;
        }
        .why2-image-card {
          max-width: 48%;
          height: 200px;
        }
      }

      @media (max-width: 700px) {
        .why2-wrapper {
          padding: 32px 16px;
        }
        .why2-title {
          font-size: 1.75rem;
          letter-spacing: -0.5px;
        }
        .why2-eyebrow {
          font-size: 0.75rem;
        }
        .why2-row {
          gap: 28px;
        }
        .why2-cards {
          grid-template-columns: 1fr;
          gap: 14px;
        }
        .why2-card {
          padding: 16px;
          border-radius: 12px;
        }
        .why2-card:hover {
          transform: translateY(-6px);
        }
        .why2-icon {
          width: 42px;
          height: 42px;
          font-size: 1.2rem;
          margin-bottom: 10px;
        }
        .why2-card-title {
          font-size: 0.88rem;
        }
        .why2-card-text {
          font-size: 0.76rem;
        }
        .why2-images {
          flex-direction: column;
        }
        .why2-image-card {
          max-width: 100%;
          width: 100%;
          height: 200px;
          border-radius: 14px;
        }
        .why2-image-overlay {
          padding: 14px 16px;
        }
        .why2-image-overlay-label {
          font-size: 0.8rem;
        }
      }

      @media (max-width: 480px) {
        .why2-wrapper {
          padding: 24px 12px;
        }
        .why2-title {
          font-size: 1.5rem;
        }
        .why2-card {
          padding: 14px;
          border-radius: 10px;
        }
        .why2-icon {
          width: 38px;
          height: 38px;
          font-size: 1.05rem;
          margin-bottom: 8px;
        }
        .why2-card-title {
          font-size: 0.82rem;
        }
        .why2-card-text {
          font-size: 0.72rem;
          line-height: 1.4;
        }
        .why2-image-card {
          height: 170px;
          border-radius: 12px;
        }
      }




       .biz7-wrapper {
        background: #0a1628;
        padding: 60px 60px;

        overflow-x: hidden;
        position: relative;
      }

      /* subtle grid background texture */
      .biz7-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(13, 148, 136, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(13, 148, 136, 0.04) 1px, transparent 1px);
        background-size: 48px 48px;
        pointer-events: none;
      }

      /* ── INNER LAYOUT ── */
      .biz7-inner {
        position: relative;
        z-index: 1;

        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
      }

      .biz7-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        animation: biz7FadeUp 0.8s ease-out both;
      }

      .biz7-eyebrow {
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #0d9488;
      }

      .biz7-heading {
        font-size: 2.3rem;
        font-weight: 700;
        line-height: 1.2;
        color: #ffffff;
        letter-spacing: -0.5px;
      }

      .biz7-heading span {
        background: linear-gradient(135deg, #0d9488, #14b8a6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .biz7-divider {
        width: 56px;
        height: 4px;
        border-radius: 4px;
        background: linear-gradient(135deg, #0d9488, #0f766e);
      }

      .biz7-row {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 32px;
        align-items: stretch;
      }

      .biz7-img-wrap {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(13, 148, 136, 0.22);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        animation: biz7SlideLeft 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        min-height: 380px;
      }

      .biz7-img-wrap img {
        width: 100%;
        height: 100%;
       
        object-position: center;
        display: block;
        filter: saturate(1.08) contrast(1.03);
        transition:
          transform 0.7s ease,
          filter 0.5s ease;
      }

      .biz7-img-wrap:hover img {
        transform: scale(1.04);
        filter: saturate(1.18) contrast(1.06);
      }

      /* teal corner accent */
      .biz7-img-wrap::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #0d9488, #14b8a6, #0d9488);
      }

      /* floating badge */
      .biz7-img-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: rgba(10, 22, 40, 0.85);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(13, 148, 136, 0.4);
        color: #14b8a6;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 30px;
      }

      .biz7-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 14px;
        border: 1px solid rgba(13, 148, 136, 0.15);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
        animation: biz7SlideRight 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        position: relative;
        overflow: hidden;
        align-content: start;
      }

      .biz7-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0d9488, #14b8a6, #0d9488);
      }

      .biz7-card-heading {
        grid-column: 1 / -1;
        font-size: 1.1rem;
        font-weight: 700;
        color: #0f1f3d;
        letter-spacing: -0.2px;
        margin-bottom: 6px;
        padding-top: 2px;
      }

      /* ── OUTCOME ITEM ── */
      .biz7-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid transparent;
        cursor: default;
        transition:
          background 0.3s ease,
          border-color 0.3s ease,
          transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
          box-shadow 0.3s ease;
      }

      .biz7-item:hover {
        background: #f0fdfb;
        border-color: rgba(13, 148, 136, 0.35);
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
      }

      .biz7-check {
        width: 24px;
        height: 24px;
        min-width: 24px;
        background: linear-gradient(135deg, #0d9488, #14b8a6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        color: #ffffff;
        font-weight: 700;
        box-shadow: 0 3px 8px rgba(13, 148, 136, 0.3);
        transition:
          transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
          box-shadow 0.3s ease;
      }

      .biz7-item:hover .biz7-check {
        transform: scale(1.15) rotate(8deg);
        box-shadow: 0 5px 14px rgba(13, 148, 136, 0.45);
      }

      .biz7-item-text {
        font-size: 0.84rem;
        font-weight: 600;
        color: #0d9488;
        line-height: 1.3;
        transition: color 0.3s ease;
      }

      .biz7-item:hover .biz7-item-text {
        color: #0f766e;
      }

      @keyframes biz7FadeUp {
        from {
          opacity: 0;
          transform: translateY(18px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes biz7SlideLeft {
        from {
          opacity: 0;
          transform: translateX(-36px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      @keyframes biz7SlideRight {
        from {
          opacity: 0;
          transform: translateX(36px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      /* ============================================
           RESPONSIVE ≤ 1000px (tablet / medium laptop)
           ============================================ */
      @media (max-width: 1000px) {
        .biz7-wrapper {
          padding: 50px 30px;
        }

        .biz7-heading {
          font-size: 2rem;
        }

        .biz7-inner {
          gap: 32px;
          max-width: 680px; /* Constrains max width of medium screens to keep layout tight */
        }

        .biz7-row {
          grid-template-columns: 1fr; /* Stacks layout cleanly */
          gap: 24px;
        }

        .biz7-img-wrap {
          min-height: 260px; /* Minimized image container height */
          max-height: 300px;
        }

        .biz7-card {
          padding: 24px 22px; /* Minimized inner paddings */
          gap: 6px 12px; /* Tighter row-column layout space */
          grid-template-columns: 1fr 1fr; /* Retains dual-column to prevent long vertical card */
        }

        .biz7-card-heading {
          font-size: 1.02rem;
          margin-bottom: 2px;
        }

        .biz7-item {
          padding: 6px 10px;
        }

        .biz7-item-text {
          font-size: 0.8rem;
        }
      }

      /* ============================================
           RESPONSIVE ≤ 700px (mobile phones)
           ============================================ */
      @media (max-width: 700px) {
        .biz7-wrapper {
          padding: 40px 16px;
        }

        .biz7-heading {
          font-size: 1.6rem;
          letter-spacing: -0.3px;
        }

        .biz7-eyebrow {
          font-size: 0.7rem;
        }

        .biz7-inner {
          gap: 28px;
        }

        .biz7-row {
          gap: 20px;
        }

        .biz7-img-wrap {
          min-height: 200px;
          border-radius: 12px;
        }

        .biz7-card {
          grid-template-columns: 1fr; /* Switches to 1 column layout safely for narrow screens */
          padding: 20px 16px;
          border-radius: 12px;
          gap: 6px;
        }

        .biz7-card-heading {
          font-size: 0.95rem;
          margin-bottom: 4px;
        }

        .biz7-item {
          padding: 7px 10px;
          border-radius: 6px;
        }

        .biz7-item:hover {
          transform: translateX(3px);
        }

        .biz7-check {
          width: 22px;
          height: 22px;
          min-width: 22px;
          font-size: 0.65rem;
        }

        .biz7-item-text {
          font-size: 0.78rem;
        }
      }

      /* ============================================
           RESPONSIVE ≤ 400px (very small phones)
           ============================================ */
      @media (max-width: 400px) {
        .biz7-wrapper {
          padding: 30px 12px;
        }

        .biz7-heading {
          font-size: 1.35rem;
        }

        .biz7-card {
          padding: 16px 12px;
        }

        .biz7-item-text {
          font-size: 0.74rem;
        }
      }

      /* ── Reduced motion ── */
      @media (prefers-reduced-motion: reduce) {
        .biz7-header,
        .biz7-img-wrap,
        .biz7-card {
          animation: none;
        }
        .biz7-item,
        .biz7-check {
          transition: none;
        }
      }



       .ind8-wrapper {
            background-color: #ffffff; 
            padding: 60px 60px;
            position: relative;
            overflow: hidden;
        }

        .ind8-container {
         
            margin: 0 auto;
            display: flex;
            flex-direction: column;
           
        }

        
        .ind8-header {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            animation: ind8FadeInUp 0.8s ease-out forwards;
        }

        .ind8-eyebrow {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #0d9488;
        }

        .ind8-heading {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f1f3d;
            line-height: 1.2;
            max-width: 800px;
        }


        .ind8-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }


        .ind8-card {
            background-color: #ffffff;
            border: 2px solid #0d9488; /* Teal green border */
            border-radius: 14px;
            padding: 30px 24px;
            display: flex;
            align-items: flex-start; /* Aligns checkbox top-left for longer paragraphs */
            gap: 16px;
            cursor: pointer;
            opacity: 0; /* Handled by Intersection Observer JS */
            
            /* Base transition for smooth hover effects */
            transition: 
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease, 
                background-color 0.3s ease,
                border-color 0.3s ease;
        }

        /* Card Hover Highlight & Translate Animation */
        .ind8-card:hover {
            transform: translateY(-8px); /* Translate animation method */
            background-color: #f0fdfb; /* Highlight background method */
            box-shadow: 0 20px 40px rgba(13, 148, 136, 0.12);
            border-color: #0f766e;
        }

      
        .ind8-card:hover  {
            background: #0d9488;
            color: #ffffff;
            transform: scale(1.1) rotate(8deg);
        }

        /* Text Block Area */
        .ind8-content {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ind8-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #0f1f3d;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        /* 3-line sentence layout adjustments */
        .ind8-description {
            font-size: 0.88rem;
            color: #475569;
            line-height: 1.5;
            display: -webkit-box;
         
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ind8-card:hover .ind8-title {
            color: #0f766e;
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes ind8FadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================================
           RESPONSIVE ≤ 1000px (Tablet / Medium Screens)
           ============================================ */
        @media (max-width: 1000px) {
            .ind8-wrapper {
                padding: 60px 30px;
            }

            .ind8-heading {
                font-size: 2.1rem;
            }

            .ind8-grid {
                grid-template-columns: repeat(2, 1fr); /* Balanced 2-column stack layout */
                gap: 22px;
            }
            
            .ind8-card {
                padding: 26px 20px;
            }
        }

        /* ============================================
           RESPONSIVE ≤ 700px (Mobile Screens)
           ============================================ */
        @media (max-width: 700px) {
            .ind8-wrapper {
                padding: 50px 20px;
            }

            .ind8-heading {
                font-size: 1.65rem;
            }

            .ind8-container {
                gap: 36px;
            }

            .ind8-grid {
                grid-template-columns: 1fr; /* 1-column layout for small mobile screens */
                gap: 18px;
            }

            .ind8-card {
                padding: 22px 18px;
            }

            .ind8-card:hover {
                transform: translateY(-4px); /* Lower translate distance for optimal mobile scroll feel */
            }

            .ind8-title {
                font-size: 1.05rem;
            }

            
        }
        
        /* Reduced Motion Fallback */
        @media (prefers-reduced-motion: reduce) {
            .ind8-card, .ind8-header {
                transition: none !important;
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
            .ind8-card:hover {
                transform: none;
            }
        }




 .incp-faq-wrapper {
            box-sizing: border-box;
            
            background-color: #ffffff;
            padding: 60px 60px;
            color: #1e293b;
        }

        .incp-faq-wrapper *,
        .incp-faq-wrapper *::before,
        .incp-faq-wrapper *::after {
            box-sizing: inherit;
            margin: 0;
            padding: 0;
        }

        
        .incp-faq-container {
            
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr; /* col-xl-6 equivalent */
            gap: 60px;
            align-items: center;
        }

        .incp-faq-left {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .incp-faq-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0f1f3d;
            line-height: 1.2;
            margin-bottom: 10px;
        }

       
        .incp-faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .incp-faq-item {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            background-color: #f8fafc;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }

        .incp-faq-item.active {
            background-color: #ffffff;
            border-color: #0d9488; /* Teal highlight for active state */
            box-shadow: 0 4px 12px rgba(13, 148, 136, 0.08);
        }

        .incp-faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 20px 24px;
            font-size: 1.05rem;
            font-weight: 600;
            color: #0f1f3d;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }

        .incp-faq-question:hover {
            color: #0d9488;
        }

       
        .incp-faq-icon {
            position: relative;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .incp-faq-icon::before,
        .incp-faq-icon::after {
            content: '';
            position: absolute;
            background-color: #0d9488;
            transition: transform 0.3s ease;
        }

       
        .incp-faq-icon::before {
            top: 9px;
            left: 0;
            width: 20px;
            height: 2px;
        }

        /* Vertical line */
        .incp-faq-icon::after {
            top: 0;
            left: 9px;
            width: 2px;
            height: 20px;
        }

        /* Rotate to minus when active */
        .incp-faq-item.active .incp-faq-icon::after {
            transform: rotate(90deg);
            opacity: 0;
        }

      
        .incp-faq-answer-wrapper {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .incp-faq-answer {
            padding: 0 24px 20px 24px;
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.6;
        }

       
        .incp-faq-right {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .incp-faq-img {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            object-fit: cover;
        }

      
        @media (max-width: 1000px) {
            .incp-faq-wrapper {
                padding: 60px 30px;
            }

            .incp-faq-container {
                grid-template-columns: 1fr; /* Stack into 1 column */
                gap: 40px;
            }

            .incp-faq-title {
                font-size: 2.2rem;
                text-align: center;
            }

            /* Reorder so image appears below the text */
            .incp-faq-right {
                order: 2;
            }
            .incp-faq-left {
                order: 1;
            }
        }

        
        @media (max-width: 700px) {
            .incp-faq-wrapper {
                padding: 50px 20px;
            }

            .incp-faq-title {
                font-size: 1.8rem;
                text-align: left;
            }

            .incp-faq-question {
                padding: 16px 20px;
                font-size: 1rem;
            }

            .incp-faq-answer {
                padding: 0 20px 16px 20px;
                font-size: 0.9rem;
            }
        }



        .incepbio-cta-section {
  width: 100%;
  padding: 60px 60px;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
}

.incepbio-cta-card {
  background-color: #005b5c; /* Premium Teal Green */
  color: #ffffff;

  width: 100%;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  box-sizing: border-box;
}

.incepbio-cta-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.incepbio-cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.95;
  color:#fff;
  margin-left: auto;
  margin-right: auto;
}

.incepbio-cta-buttons-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.incepbio-cta-btn {
  padding: 15px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}

.incepbio-cta-btn-primary {
  background-color: #ffffff;
  color: #005b5c;
  border: 2px solid #ffffff;
}

.incepbio-cta-btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
}

.incepbio-cta-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.incepbio-cta-btn-secondary:hover {
  background-color: #ffffff;
  color: #005b5c;
}

.incepbio-cta-footer-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
}

.incepbio-cta-contact-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease;
}

.incepbio-cta-contact-link:hover {
  opacity: 0.8;
}

.incepbio-cta-icon {
  font-size: 1.2rem;
}

/* Tablet Responsive Breakpoint */
@media (max-width: 1000px) {
  .incepbio-cta-card {
    padding: 40px 30px;
  }
  
  .incepbio-cta-heading {
    font-size: 1.85rem;
  }
  
  .incepbio-cta-description {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }
}

/* Mobile Responsive Breakpoint */
@media (max-width: 700px) {
  .incepbio-cta-section {
    padding: 20px 15px;
  }

  .incepbio-cta-card {
    padding: 35px 20px;
    border-radius: 8px;
  }

  .incepbio-cta-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .incepbio-cta-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .incepbio-cta-buttons-group {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }

  .incepbio-cta-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .incepbio-cta-footer-info {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding-top: 20px;
  }
  
  .incepbio-cta-contact-link {
    font-size: 1rem;
  }
}
