/* ==========================================================================
   1) Services Section Wrapper (transparent + spacing)
   ========================================================================== */
.feature-block {
  background: none;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   2) Graph Container
   ========================================================================== */
.service-graph {
  position: relative;
  width: 100%;
  min-height: 350px;          /* adjust up/down to line up with text column */
}

/* ==========================================================================
   3) Connector Lines (SVG)
   ========================================================================== */
.connection-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  stroke: #000;               /* black network */
  stroke-width: 1.2;
  fill: none;
  z-index: 1;
}

/* ==========================================================================
   4) Service Nodes
   ========================================================================== */
.service-node {
  /* sizing & placement */
  --size: 80px;
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: var(--size);
  height: var(--size);
  /* circle look */
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  /* center icon/text */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  /* initial hidden state for popIn */
  opacity: 0;
  transform: scale(0.6);
  /* animation */
  animation: popIn 0.5s forwards ease-out;
  animation-delay: var(--delay);
  /* sharp text */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 2;
}

.service-node i {
  font-size: 1.25rem;
  color: #07257E;
  margin-bottom: 0.25rem;
}

.service-node span {
  font-size: 0.65rem;
  font-weight: 600;
  color: #333;
  line-height: 1.1;
}

/* ==========================================================================
   5) Pop‑In Keyframe
   ========================================================================== */
@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================================================
   6) Hover Effect
   ========================================================================== */
.service-node:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* ==========================================================================
   7) Responsive Tweaks
   ========================================================================== */
@media (max-width: 768px) {
  .service-node {
    --size: 60px;
  }
  .service-node i {
    font-size: 1rem;
  }
  .service-node span {
    font-size: 0.6rem;
  }
}

/* ==========================================================================
   8) Two‑Line Heading (“What We Do”)
   ========================================================================== */
.feature-title {
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.feature-title__small {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #07257E;
}
.feature-title__large {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #07257E;
}
/* --------------------------------------------------
   Animated underline under “We Do” on page load
   -------------------------------------------------- */
/* Full‑width animated underline under “What We Do” */
.feature-title {
  position: relative;             /* establish positioning context */
  display: inline-block;          /* shrink‑wrap to text width */
}

.feature-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;                   /* adjust to sit neatly under “We Do” */
  width: 100%;                    /* full text width */
  height: 4px;
  background-color: #07257E;      /* your navy color */
  transform: scaleX(0);           /* start collapsed */
  transform-origin: left center;  
  animation: expandUnderline 0.6s ease-out 0.4s forwards;
}

@keyframes expandUnderline {
  to { transform: scaleX(1); }
}

/* Optional hover: re‑trigger full‑width stretch */
.feature-title:hover::after {
  transform: scaleX(1);
}
.feature-text p {
  text-align: justify;
  text-justify: inter-word;
}

/* ==========================================================================
   Pricing Section Base
   ========================================================================== */
#pricing .feature-title.single-line {
  display: inline-block;
  position: relative;
  color: #07257E;
}
#pricing .feature-title.single-line::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 4px;
  background-color: #07257E;
  transform: scaleX(0);
  transform-origin: left center;
  animation: expandUnderline 0.6s ease-out 0.4s forwards;
}
@keyframes expandUnderline {
  to { transform: scaleX(1); }
}

#pricing .pricing-info {
  color: #444;
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Pricing Table Styles
   ========================================================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}
.pricing-table th,
.pricing-table td {
  padding: 1rem 0.75rem;
  vertical-align: middle;
}
.pricing-table th {
  background-color: #07257E;
  color: #fff;
  font-weight: 600;
  border: none;
  text-align: left;
}
.pricing-table th:last-child {
  text-align: right;
}
.pricing-table td {
  border-bottom: 1px solid #e0e0e0;
  color: #444;
}
.pricing-table td.price {
  color: #07257E;
  font-weight: 700;
  text-align: right;
}

/* Alternating row backgrounds */
.pricing-table tbody tr:nth-child(odd) {
  background: #f8f9fa;
}

/* ==========================================================================
   Hover Animation
   ========================================================================== */
.pricing-table tbody tr {
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.pricing-table tbody tr:hover {
  transform: translateX(10px);
  background-color: rgba(7,37,126,0.05);
}
.pricing-table td:first-child,
.pricing-table th:first-child {
  vertical-align: middle;
}

/* ==========================================================================
   Responsive Mobile
   ========================================================================== */
/* ==========================================================================
   PRICING TABLE — MOBILE LAYOUT FIX
   ========================================================================== */
@media (max-width: 576px) {
  /* hide desktop headers */
  .pricing-table thead {
    display: none;
  }

  /* make rows & cells full‑width blocks */
  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  /* add breathing room between “rows” */
  .pricing-table tr {
    margin-bottom: 1.5rem;
  }

  /* left‑align all cell content */
  .pricing-table td {
    position: relative;
    padding: 0.75rem 1rem;
    text-align: left !important;
    border-bottom: 1px solid #e0e0e0;
  }

  /* show the column label above each cell */
  .pricing-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #07257E;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 576px) {
  /* Turn off price animation on mobile */
  .pricing-table tbody tr:hover td.price {
    animation: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   PRICING SECTION: remove scroller
   ========================================================================== */
#pricing .table-responsive {
  overflow-x: visible !important;
}

/* (rest of your existing pricing-table CSS follows) */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}
/* …etc… */
/* ==========================================================================
   Remove the horizontal shift on hover and keep row text aligned
   ========================================================================== */
/* 1) Override the translateX */
.pricing-table tbody tr:hover {
  /* remove any horizontal translate or scale */
  transform: none !important;
  /* keep the background highlight */
  background-color: rgba(7,37,126,0.08) !important;
}

/* 2) If you still want a slight “pop” on hover, use scale instead */
.pricing-table tbody tr:hover {
  transform: scale(1.01);           /* very slight grow */
  transform-origin: center center;  /* grow from center */
}

/* 3) Bump the font-size without affecting alignment */
.pricing-table tbody tr:hover td {
  font-size: 1.05rem;               /* bump text */
}

/* 4) Keep your green (or teal) accent bar on the left */
.pricing-table tbody tr:hover td:first-child {
  border-left: 4px solid #05a6a6;   /* your accent */
  padding-left: calc(1rem - 4px);
}
/* ==========================================================================
   Fix header alignment & accent‑bar layout on hover
   ========================================================================== */
/* 1) Lock columns: table‑layout fixed */
.pricing-table {
  table-layout: fixed !important;
}

/* 2) Service cell: restore padding and prepare for pseudo‑element */
.pricing-table tbody tr td:first-child {
  position: relative;      /* allow absolute child */
  padding-left: 1rem !important;  /* reset if modified before */
}

/* 3) Accent bar as ::before so it doesn’t shrink the cell */
.pricing-table tbody tr:hover td:first-child::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #05a6a6;     /* your teal accent */
}

/* 4) Ensure Description column stays put (no extra white-space removal) */
.pricing-table th,
.pricing-table td {
  white-space: nowrap;     /* keep each cell a single line */
  overflow: hidden;        /* trim any overflow */
  text-overflow: ellipsis; /* add “…” if it ever does */
}
/* -----------------------------------------------------------------------------
   Slim & Glossy Accent Bar on Hover
   ----------------------------------------------------------------------------- */
.pricing-table tbody tr:hover td:first-child::before {
  /* narrower pipe */
  width: 2px !important;

  /* vertical gradient for subtle gloss */
  background: linear-gradient(
    to bottom,
    rgba(5,166,166,1) 0%,
    rgba(5,166,166,0.8) 50%,
    rgba(5,166,166,1) 100%
  );

  /* add a soft outer glow + highlight line */
  box-shadow:
    0 0 6px rgba(5,166,166,0.6),
    inset 0 0 4px rgba(255,255,255,0.4);
}

/* ==========================================================================
   Hover row: light Navy tint + text color bump
   ========================================================================== */
.pricing-table tbody tr:hover {
  /* very light #002d91 background */
  background-color: rgba(0, 45, 145, 0.05) !important;
  /* remove any previous transform */
  transform: none !important;
}

/* Service & Description cells only */
.pricing-table tbody tr:hover td:first-child,
.pricing-table tbody tr:hover td:nth-child(2) {
  color: #002d91 !important;    /* text turns Navy */
  font-size: 1.05rem !important; /* bump text size */
}

/* Keep Price column bold navy (unchanged) */
.pricing-table tbody tr:hover td:last-child {
  color: #07257E !important;
  font-weight: 700;
}

/* ==========================================================================
   1) Bold + Gloss on all text in the hovered row
   ========================================================================== */
.pricing-table tbody tr:hover td {
  font-weight: 700;                         /* make all text bold */
  text-shadow: 0 0 6px rgba(255,255,255,0.6);/* subtle white gloss */
}

/* ==========================================================================
   Price‑cell pop‑left animation
   ========================================================================== */
/* 1) New keyframes that translate left & scale */
@keyframes pricePopLeft {
  0%   { transform: translateX(0) scale(1);   color: #07257E; }
  40%  { transform: translateX(-15px) scale(1.4); color: #05a6a6; }
  70%  { transform: translateX(-8px) scale(1.1);  color: #05a6a6; }
  100% { transform: translateX(0) scale(1);   color: #07257E; }
}

/* 2) Trigger on row hover for the price cell */
.pricing-table tbody tr:hover td.price {
  animation: pricePopLeft 0.6s ease-out;
  transform-origin: center center;
}
/* ==========================================================================
   New Price Bounce Animation on Hover
   ========================================================================== */
/* 1) Define the bounce keyframes */
@keyframes bouncePrice {
  0%, 100% {
    transform: translateY(0) scale(1);
    color: #07257E;
  }
  30% {
    transform: translateY(-8px) scale(1.2);
    color: #05a6a6;
  }
  60% {
    transform: translateY(4px) scale(1.1);
    color: #07257E;
  }
}

/* 2) Apply it when the row is hovered */
.pricing-table tbody tr:hover td.price {
  /* ensure the cell can animate freely */
  display: inline-block;
  overflow: visible;
  position: relative;

  animation: bouncePrice 0.6s cubic-bezier(.34,1.56,.64,1) both;
}
/* ==========================================================================
   Render AED & SAR on row‑hover via data‑ attributes
   ========================================================================== */
.pricing-table tbody tr:hover td.price {
  position: relative;
}

/* Show them right after the USD price */
.pricing-table tbody tr:hover td.price::after {
  content:
    " (" attr(data-aed) " | " attr(data-sar) ")";
  display: inline-block;
  font-size: 0.85em;
  color: #444;
  margin-left: 0.5rem;
  vertical-align: middle;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0);     }
}
/* ==========================================================================
   Softer, slightly larger AED/SAR hover labels
   ========================================================================== */
/* — Tidy AED/SAR hover label — */
.pricing-table tbody tr:hover td.price::after {
  /* show in parentheses, no leading dash */
  content: "(" attr(data-aed) " | " attr(data-sar) ")";
  display: block;
  margin-top: 0.25rem;
  
  /* styling */
  font-size: 0.85em;
  font-weight: 500;
  color: rgba(7,37,126,0.6);
  white-space: nowrap;
  
  /* fade‑in animation (if you kept fadeIn) */
  animation: fadeIn 0.4s ease-out;
}
/* ==========================================================================
   Hover label: show only AED
   ========================================================================== */
.pricing-table tbody tr:hover td.price::after {
  content: "(" attr(data-aed) ")";
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85em;
  font-weight: 500;
  color: rgba(7,37,126,0.6);
  white-space: nowrap;
  animation: fadeIn 0.4s ease-out;
}


/* reuse the fadeIn keyframes if you haven’t already */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0);     }
}
/* ==========================================================================
   Pricing Section Background
   ========================================================================== */
#pricing {
  background-color: #EFF1F6;  /* your light-grey tone from the screenshot */
  padding: 2rem 1rem;         /* add some breathing room */
  border-radius: 0.5rem;      /* optional: soften the corners */
}
/* ==========================================================================
   Services Carousel Styles
   ========================================================================== */
.service-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.carousel-title {
  flex: 0 0 auto;
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  color: #07257E;
  margin: 0;
}
.service-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 0.5rem 0;
  flex: 1 1 auto;
}
.carousel-item {
  flex: 0 0 auto;
  width: 4.5rem;
  height: 4.5rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-item i {
  color: #07257E;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.carousel-item span {
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  color: #07257E;
  line-height: 1.1;
}
.carousel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.carousel-nav {
  flex: 0 0 auto;
  background: none;
  border: none;
  font-size: 2rem;
  color: #07257E;
  cursor: pointer;
  padding: 0 0.5rem;
}
.carousel-nav:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ==========================================================================
   Table Highlighting
   ========================================================================== */
/* Clear any old highlight */
.pricing-table tbody tr {
  transition: background-color 0.3s ease;
}
.pricing-table tbody tr.highlight {
  background-color: rgba(7,37,126,0.15) !important;
}
/* Remove other accents on hovered rows */
.pricing-table tbody tr:hover td:first-child::before {
  display: none !important;
}
/* Left‑align the “Our Services” heading */
#our-services .feature-title {
  display: inline-block;
  margin-left: 0;
}

/* Ensure small “Our” sits flush left over “Services” */
#our-services .feature-title__small {
  text-align: left;
}

/* (Optional) If you need extra left padding on the track to match content width */
#our-services .svc-track {
  padding-left: 0.5rem;
}
/* ==========================================================================
   OUR SERVICES CAROUSEL STYLES
   ========================================================================== */

/* 1) Section heading, reusing your feature-title styles */
#our-services .feature-title {
  display: inline-block;      /* shrink‑wrap to text width */
  margin: 0;                  /* remove extra margin */
}
#our-services .feature-title__small,
#our-services .feature-title__large {
  text-align: left;
}

/* ==========================================================================
   Payments & Policies Section
   ========================================================================== */
#payments-policies {
  background: #fff;
}

/* Title reuse */
#payments-policies .feature-title__small,
#payments-policies .feature-title__large {
  color: #07257E;
}

/* Policies list */
.policies-list .policy-item {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

/* Button that toggles each policy */
.policy-btn {
  width: 100%;
  background: #f8f9fa;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #07257E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.policy-btn i {
  transition: transform 0.3s ease;
}
.policy-item.open .policy-btn {
  background: #07257E14; /* subtle gold tint */
}
.policy-item.open .policy-btn i {
  transform: rotate(180deg);
}

/* Hidden content */
.policy-content {
  max-height: 0;
  opacity: 0;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: #444;
  background: #f0f2f5;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}
.policy-item.open .policy-content {
  max-height: 200px; /* enough for content */
  opacity: 1;
  padding: 0.75rem 1.5rem 1.5rem;
}

/* Help box */
.help-box {
  background: #f0f2f5;
}
.help-box h3 {
  color: #e5a428;
}
.help-box p {
  color: #444;
}
.help-box .btn-primary {
  background: #07257E;
  border: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  #payments-policies .feature-title {
    text-align: center;
  }
  .policies-list .policy-item {
    margin-bottom: 0.75rem;
  }
}
/* Container: inline‑flex, top align children */
.payment-term-header {
  display: inline-flex;
  align-items: flex-start;   /* icon sits at top of heading */
}

/* Icon styling */
.payment-icon {
  font-size: 3rem;           /* match your desired size */
  color: #07257E;            /* your navy color */
  line-height: 1;
  /* slight nudge so it sits just above “Payment” */
  margin-top: 0.1rem;
}

/* Ensure your heading still underlines cleanly */
.payment-term-header .feature-title {
  display: inline-block;
}
/* ensure the header container is 100% wide and flush-left */
.services-header {
  width: 100%;              /* span full column */
  margin-left: 0;           /* override any accidental indent */
}

/* grid icon styling */
.service-icon {
  font-size: 3rem;          /* same weight as your “Services” text */
  color: #07257E;           /* your navy brand color */
  line-height: 1;
  margin-top: 0.1rem;       /* fine‑tuning vertical placement */
}

/* underline only under “Services” */
.feature-title__large {
  position: relative;
  display: inline-block;
}
.feature-title__large::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 4px;
  background-color: #07257E;
  transform: scaleX(0);
  transform-origin: left center;
  animation: expandUnderline 0.6s ease-out 0.4s forwards;
}

/* keyframe (reuse) */
@keyframes expandUnderline {
  to { transform: scaleX(1); }
}
/* ==========================================================================
   Services Cards Strip
   ========================================================================== */
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center; /* or flex-start if you want them left-aligned */
  margin-bottom: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 0.6rem;
  padding: 0.75rem 0.5rem;
  width: 8rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
  font-size: 1.5rem;
  color: #07257E;
}

.service-card span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #07257E;
  line-height: 1.2;
}

/* Hover state */
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-card {
    width: 6.5rem;
    padding: 0.6rem 0.4rem;
  }
  .service-card i {
    font-size: 1.25rem;
  }
  .service-card span {
    font-size: 0.75rem;
  }
}
/* ─────────────────────────────────────────────────────────────
   Mobile: fix Payment Terms header alignment
───────────────────────────────────────────────────────────── */
@media (max-width: 576px) {
  .payment-term-header {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  /* shrink the icon a bit if needed */
  .payment-term-header .payment-icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
  }

  /* remove the desktop‑only left margin */
  .payment-term-header .feature-title {
    margin: 0 !important;
  }
}
/* ─────────────────────────────────────────────────────────────
   Mobile‑only fix for Payment Terms header alignment
───────────────────────────────────────────────────────────── */
@media (max-width: 576px) {
  /* Make the header a flex row, align icon + text */
  #payments-policies .payment-term-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
    /* any bottom‑margin you want between header + list */
    margin-bottom: 1rem !important;
  }

  /* Nuke that .ms-3 on the <h2> so it doesn’t push right */
  #payments-policies .payment-term-header .ms-3 {
    margin-left: 0 !important;
  }

  /* Tweak icon size if it’s too big */
  #payments-policies .payment-term-header .payment-icon {
    font-size: 1.75rem !important;
    flex-shrink: 0;
  }
}
@media (max-width: 576px) {
  /* pull the header up a bit */
  #payments-policies .payment-term-header {
    margin-top: -0.5rem !important;
  }
}


@media (max-width: 576px) {
  /* 1) Reduce the section’s top padding (py-5 → ~1.5rem) */
  #payments-policies {
    padding-top: 1.5rem !important;
  }

  /* 2) Nudge the header block upward */
  #payments-policies .payment-term-header {
    position: relative;
    top: -0.75rem;
  }
}
/* ==========================================================================
   Primary Source Verification Section
   ========================================================================== */
.source-verification {
  background: #f2f4f8;
}
.source-verification .feature-title {
  margin-bottom: 1.5rem;
}
.source-verification .feature-title__small,
.source-verification .feature-title__large {
  /* reuse your Poppins, sizing, color */
}
.source-verification .feature-title__large::after {
  /* same underline animation from “What We Do” */
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 4px;
  background-color: #07257E;
  transform: scaleX(0);
  transform-origin: left center;
  animation: expandUnderline 0.6s ease-out 0.3s forwards;
}

/* ribbon behind image */
.image-col {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.verification-ribbon {
  position: absolute;
  top: 30px;
  left: -40px;
  width: 220px;
  height: 28px;
  background-color: #07257E;
  transform: rotate(-12deg);
  border-radius: 4px;
  z-index: 1;
}

/* the portrait */
.verification-img {
  position: relative;
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 0.8s ease-out 0.3s forwards;
}

/* animate the photo in */
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* list styling */
.verification-list {
  margin-top: 1rem;
  list-style: none;
  padding-left: 0;
}
.verification-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.verification-list li::before {
  content: "✔︎";
  position: absolute;
  left: 0;
  color: #07257E;
  font-size: 1rem;
}

/* Responsive: hide ribbon on small */
@media (max-width: 768px) {
  .verification-ribbon {
    display: none;
  }
}
/* -----------------------------
   Our Services Spotlight
   ----------------------------- */
.our-services {
  background: #f2f4f8;
}

/* reuse your two-line Feature Title */
.our-services .feature-title {
  margin-bottom: 0.75rem;
}
.our-services .feature-title__small,
.our-services .feature-title__large {
  /* already defined in your existing CSS */
}
.our-services .feature-title::after {
  /* animated underline */
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 4px;
  background-color: #07257E;
  transform: scaleX(0);
  transform-origin: left center;
  animation: expandUnderline 0.6s ease-out 0.3s forwards;
}

/* optional intro paragraph */
.services-intro {
  color: #444;
  margin-bottom: 1.5rem;
}

/* Grid of cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px,1fr));
  gap: 1rem;
}

/* Individual card */
.service-card {
  --card-bg: #ffffff;
  background: var(--card-bg);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: var(--delay);
}

/* Icon */
.service-card i {
  font-size: 1.5rem;
  color: #07257E;
  margin-bottom: 0.5rem;
}

/* Label */
.service-card span {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #07257E;
  line-height: 1.2;
}

/* Fade‑up animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px,1fr));
    gap: 0.75rem;
  }
  .service-card {
    padding: 0.75rem;
    animation-delay: var(--delay); /* still works */
  }
}
.our-services1 {
  background: transparent;
}

