.hero*,.hero *::before,.hero *::after{box-sizing:border-box;margin:0;padding:0;}
 
.hero {
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
}
 
/* ── DESKTOP INNER ── */
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 50px;
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  min-height: 600px;
}
.hero__right { width: 100%; }
 
/* ── SHARED TEXT STYLES ── */
.hero__heading {
  color: #ffffff;
  font-size: clamp(30px, 3.8vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero__gold { color: #fff; }
 
.hero__sub {
  color: #fff;
  font-size: 14.5px;
  line-height: 1.78;
  margin-bottom: 36px;
}
 
.hero__btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #0b1f3a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.hero__btn:hover {
  background: #0b1f3a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(72 69 147 / 40%);
}
 
/* ── MOBILE BLOCKS — hidden on desktop ── */
.hero__mobile-img  { display: none; }
.hero__mobile-content { display: none; }
 
/* ═══════════════════════
   TABLET 640–860px
═══════════════════════ */
@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 80px 28px 72px;
    min-height: auto;
  }
  .hero__right { display: none; }
  .hero__bg-overlay {
    background: linear-gradient(
      135deg,
      rgba(10,10,10,0.97) 0%,
      rgba(10,10,10,0.88) 55%,
      rgba(10,10,10,0.60) 100%
    );
  }
}
 
/* ═══════════════════════
   MOBILE ≤ 640px
   image on top, content below
═══════════════════════ */
@media (max-width: 640px) {
 
  /* hide desktop layout entirely */
  .hero__bg      { display: none; }
  .hero__inner   { display: none; }
 
  /* show mobile blocks */
  .hero__mobile-img     { display: block; }
  .hero__mobile-content { display: flex; flex-direction: column; }
 
  /* image block */
  .hero__mobile-img {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero__mobile-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
  }
 
  /* content block */
  .hero__mobile-content {
    background: #0b1f3a;
    padding: 28px 18px 52px;
    gap: 0;
  }
 
  .hero__mobile-content .hero__heading {
    font-size: 28px;
    line-height: 1.30;
    margin-bottom: 14px;
  }
 
  .hero__mobile-content .hero__sub {
    font-size: 13.5px;
    margin-bottom: 28px;
    color: #fff;
  }
 
  .hero__mobile-content .hero__btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 12.5px;
  }
}
 
/* very small phones */
@media (max-width: 380px) {
  .hero__mobile-img img { height: 220px; }
  .hero__mobile-content { padding: 24px 14px 44px; }
  .hero__mobile-content .hero__heading { font-size: 25px; }
}

.arch*,.arch *::before,.arch *::after{box-sizing:border-box;margin:0;padding:0;}
 
/* ── SECTION ── */
.arch {
  background: #fff;
  padding: 88px 28px;
  overflow: hidden;
}
 
.arch__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
 
/* ── LEFT ── */
.arch__eyebrow {
  display: block;
  color: #0b1f3a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
 
.arch__heading {
  color: #0b1f3a;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.2px;
  margin-bottom: 40px;
}
 
/* ── ITEMS ── */
.arch__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
 
.arch__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 20px;
}
 
/* left column: icon + connector line */
.arch__item-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
.arch__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #04223e;
  background: #04223e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.arch__icon-wrap svg { width: 28px; height: 28px; }
 
.arch__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
 
.arch__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0b1f3a;
  margin: 6px 0 0;
  flex-shrink: 0;
  box-shadow: 0 0 6px #238fa266;
}
 
.arch__line {
  width: 1px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(180deg, #0b1f3a 0%, #174967 100%);
  margin-bottom: 0;
}
 
.arch__line--last {
  background: linear-gradient(180deg, #0b1f3a 0%, transparent 100%);
}
 
/* right column: text */
.arch__item-body {
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.arch__item:last-child .arch__item-body {
  padding-bottom: 0;
}
 
.arch__item-title {
  color: #0b1f3a;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  padding-top: 10px;
}
 
.arch__item-text {
  color: #0b1f3a;
  font-size: 13px;
  line-height: 1.8;
}
 
/* ── RIGHT: IMAGE FRAME ── */
.arch__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.arch__frame {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
 
.arch__img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  filter: brightness(0.75) saturate(1.1);
}
 
/* corner accent lines */
.arch__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 3;
}
.arch__corner--tl { top: 10px; left: 10px; border-top: 2px solid #238fa2; border-left: 2px solid #238fa2; border-radius: 4px 0 0 0; }
.arch__corner--tr { top: 10px; right: 10px; border-top: 2px solid #238fa2; border-right: 2px solid #238fa2; border-radius: 0 4px 0 0; }
.arch__corner--bl { bottom: 10px; left: 10px; border-bottom: 2px solid #238fa2; border-left: 2px solid #238fa2; border-radius: 0 0 0 4px; }
.arch__corner--br { bottom: 10px; right: 10px; border-bottom: 2px solid #238fa2; border-right: 2px solid #238fa2; border-radius: 0 0 4px 0; }
 
/* pyramid labels - positioned at bottom of image */
.arch__pyramid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(to top, rgba(4,34,62,0.9) 0%, transparent 100%);
  padding-top: 60px;
  z-index: 2;
}
 
.arch__layer {
  color: #c8e8f0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 0;
  border-bottom: 1px solid #238fa230;
}
.arch__layer--1 { color: #ffffff; font-size: 12px; }
.arch__layer--2 { color: #d0eef5; }
.arch__layer--3 { color: #a0d4e0; }
.arch__layer--4 { color: #7ab8cc; }
 
@media (max-width: 1024px) {
  .arch__inner {
    grid-template-columns: 1fr 380px;
    gap: 44px;
  }
}
 
@media (max-width: 860px) {
  .arch__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .arch__right { order: -1; }
  .arch__frame { max-width: 480px; margin: 0 auto; }
  .arch__img { aspect-ratio: 3 / 4; }
  .arch__pyramid { display: none; }
}
 
@media (max-width: 560px) {
  .arch { padding: 60px 16px; }
  .arch__heading { font-size: 22px; margin-bottom: 32px; }
  .arch__icon-wrap { width: 42px; height: 42px; }
  .arch__icon-wrap svg { width: 24px; height: 24px; }
  .arch__item { grid-template-columns: 44px 1fr; gap: 0 14px; }
  .arch__item-title { font-size: 15px; }
  .arch__item-text  { font-size: 12.5px; }
  .arch__img { aspect-ratio: 3 / 4; }
}


.promise*,.promise *::before,.promise *::after{box-sizing:border-box;margin:0;padding:0;}
 
.promise {
  position: relative;
  overflow: hidden;
}
.promise__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.promise__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.promise__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #04223e 0%,
    #04223e 36%,
    rgba(4,34,62,0.88) 52%,
    rgba(4,34,62,0.45) 68%,
    rgba(4,34,62,0.1) 100%
  );
}
 
/* ── INNER ── */
.promise__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: center;
  min-height: 520px;
}
 
/* ── LEFT ── */
.promise__eyebrow {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.promise__heading {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.2px;
  margin-bottom: 20px;
}
.promise__body {
  color: #fff;
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 44px;
}
 
/* ── FEATURES: desktop — 4 columns, icon above ── */
.promise__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
}
.promise__feat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promise__feat-icon { width: 42px; height: 42px; }
.promise__feat-icon svg { width: 42px; height: 42px; display: block; }
.promise__feat-body { display: flex; flex-direction: column; gap: 5px; }
.promise__feat-title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.promise__feat-text {
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
}
 
/* ── RIGHT (spacer) ── */
.promise__right { width: 100%; }
 
/* ═══════════════════════════════════
   TABLET 768–1024px
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .promise__inner {
    grid-template-columns: 1fr;
    padding: 64px 32px;
    min-height: auto;
  }
  .promise__right { display: none; }
  .promise__bg-overlay {
    background: linear-gradient(
      to right,
      rgba(4,34,62,0.97) 0%,
      rgba(4,34,62,0.92) 50%,
      rgba(4,34,62,0.65) 100%
    );
  }
  .promise__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
  }
}
 
/* ═══════════════════════════════════
   MOBILE ≤ 640px
   — NO background image, clean card layout
═══════════════════════════════════ */
@media (max-width: 640px) {
 
  /* hide the bg image entirely on mobile */
  .promise__bg { display: none; }
 
  .promise {
    background: #04223e;
  }
 
  .promise__inner {
    padding: 52px 18px 48px;
    min-height: auto;
  }
 
  .promise__eyebrow { margin-bottom: 14px; }
 
  .promise__heading {
    font-size: 22px;
    margin-bottom: 16px;
  }
 
  .promise__body {
    font-size: 13.5px;
    margin-bottom: 32px;
  }
 
  /* mobile features: horizontal row (icon + text side by side) inside 2-col grid */
  .promise__features {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #174967;
    border-radius: 10px;
    overflow: hidden;
  }
 
  .promise__feat {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 14px;
    background: #04223e;
    border-right: 1px solid #174967;
    border-bottom: 1px solid #174967;
  }
 
  /* remove right border on even items, bottom border on last 2 */
  .promise__feat:nth-child(2n) { border-right: none; }
  .promise__feat:nth-child(3),
  .promise__feat:nth-child(4) { border-bottom: none; }
 
  .promise__feat-icon { width: 32px; height: 32px; flex-shrink: 0; margin-top: 2px; }
  .promise__feat-icon svg { width: 32px; height: 32px; }
 
  .promise__feat-title { font-size: 12.5px; }
  .promise__feat-text  { font-size: 11.5px; color: #fff; }
}
 
/* very small phones */
@media (max-width: 360px) {
  .promise__inner { padding: 44px 14px 40px; }
  .promise__heading { font-size: 20px; }
  .promise__feat { padding: 14px 10px; gap: 10px; }
  .promise__feat-icon { width: 28px; height: 28px; }
  .promise__feat-icon svg { width: 28px; height: 28px; }
}

/* ===== WHAT WE DO ===== */
.wwd-section {
  background: #fff;
  padding: 60px 20px 60px;
}
.wwd-container {
  max-width: 1200px;
  margin: 0 auto;
}
.wwd-header {
  text-align: center;
  margin-bottom: 52px;
}
.wwd-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #0b1f3a;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wwd-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #0b1f3a;
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.wwd-divider {
  width: 48px;
  height: 3px;
  background: #0b1f3a;
  margin: 0 auto;
  border-radius: 2px;
}
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.wwd-card {
    background: #16345e;
    border: 1.5px solid #16345e;
    border-radius: 8px;
    padding: 20px 10px 20px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.25s;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.wwd-card:hover {
  border-color: #16345e;
  transform: translateY(-4px);
}
.wwd-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.wwd-icon svg {
  width: 100%;
  height: 100%;
}
.wwd-card-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0 0 14px 0;
  line-height: 1.5;
  text-transform: uppercase;
}
.wwd-card-desc {
  font-size: 12.5px;
  color: #fff;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .wwd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .wwd-section {
    padding: 56px 0 0;
  }
  .wwd-header {
    padding: 0 20px;
    margin-bottom: 36px;
  }
  .wwd-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 0 20px 16px;
    margin-bottom: 20px;
    grid-template-columns: unset;
  }
  .wwd-grid::-webkit-scrollbar { display: none; }
  .wwd-card {
    flex: 0 0 220px;
    min-width: 220px;
    padding: 20px 13px 20px;
  }
}

/* ============================================
   ABOUT US SECTION
   ============================================ */

.about-us-section {
    background-color: #0b1f3a;
    padding: 5rem 2rem;
}
.about-us-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-image-box {
    position: relative;
    height: 500px;
}
.about-image-wrapper {
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(212, 175, 55, 0.05);
}
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgb(107 120 141 / 40%);
}
.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1f3a;
}
.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0b1f3a;
    line-height: 1.4;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
}

/* About Label */
.about-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
}
.about-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1.5rem;
}
.about-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #fff;
}
.about-description {
    font-size: 1rem;
    color: #fff;
    line-height: 1.8;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}
.feature-check {
    color: #fff;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.learn-more-btn {
    font-family: math;
    padding: 0.95rem 2rem;
    background-color: #fff;
    color: #0b1f3a;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}
.learn-more-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(107 120 141 / 40%);
}
.learn-more-btn .arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.learn-more-btn:hover .arrow {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .about-us-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-image-box {
        height: 350px;
    }
    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -30px;
        right: -7px;
    }
    .badge-number {
        font-size: 2rem;
    }
    .badge-text {
        font-size: 0.7rem;
    }
    .about-heading {
        font-size: 2rem;
    }
    .about-content {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 3rem 1.5rem;
    }
    .about-us-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image-box {
        height: 300px;
        margin-bottom: 2rem;
    }
    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -30px;
        right: -7px;
    }
    .badge-number {
        font-size: 1.8rem;
    }
    .badge-text {
        font-size: 0.65rem;
    }
    .about-label {
        font-size: 0.85rem;
    }
    .about-heading {
        font-size: 1.8rem;
        padding-bottom: 1rem;
    }
    .about-heading::after {
        width: 50px;
        height: 2px;
    }
    .about-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .about-features {
        gap: 0.8rem;
    }
    .feature-item {
        font-size: 0.95rem;
    }
    .learn-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 2rem 1rem;
    }
    .about-image-box {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -30px;
        right: -7px;
    }
    .badge-number {
        font-size: 1.5rem;
    }
    .badge-text {
        font-size: 0.6rem;
    }
    .about-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    .about-heading {
        font-size: 1.4rem;
        padding-bottom: 0.8rem;
    }
    .about-heading::after {
        width: 40px;
    }
    .about-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .about-features {
        gap: 0.7rem;
    }
    .feature-item {
        font-size: 0.9rem;
    }
    .feature-check {
        width: 18px;
        height: 18px;
    }
    .learn-more-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* ===== TESTIMONIALS ===== */
.testi-section {
  background: #fff;
  padding: 80px 20px 60px;
}
.testi-container {
  max-width: 1200px;
  margin: 0 auto;
}
.testi-header {
  text-align: center;
  margin-bottom: 52px;
}
.testi-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #0b1f3a;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.testi-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #0b1f3a;
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.testi-divider {
  width: 44px;
  height: 3px;
  background: #0b1f3a;
  border-radius: 2px;
  margin: 0 auto;
}
.testi-slider-outer {
  overflow: hidden;
  width: 100%;
}
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-card {
  background: #0b1f3a;
  border: 1.5px solid #0b1f3a;
  border-radius: 10px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.testi-card:hover {
  border-color: #0b1f3a;
}
.testi-quote {
  margin-bottom: 20px;
}
.testi-quote svg {
  width: 32px;
  height: 24px;
}
.testi-text {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  margin: 0 0 28px 0;
  flex-grow: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #333;
}
.testi-avatar svg {
  width: 100%;
  height: 100%;
}
.testi-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.testi-role {
  font-size: 12px;
  color: #fff;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.testi-dot.active {
  background: #0b1f3a;
  transform: scale(1.3);
}
 
@media (min-width: 769px) {
  /* Desktop: show 3 cards */
  .testi-card {
    width: calc((100% - 40px) / 3);
  }
}
 
@media (max-width: 768px) {
  .testi-section {
    padding: 56px 16px 48px;
  }
  .testi-card {
    width: 100%;
    padding: 28px 20px 22px;
  }
}