/* Base styles */
:root{
  --primary: #0d6efd;
  --dark: #0f172a;
  --muted: #6c757d;
  --radius: 1.25rem; /* ~rounded-4 */
}

html, body{
  scroll-behavior: smooth;
  background-color: #ffffff;
  color: #0f172a;
}

.bg-cover{
  background-size: cover;
  background-position: center;
}

.btn-primary{
  border-radius: var(--radius);
}

.card{
  border-radius: var(--radius);
}

.navbar .btn{
  border-radius: var(--radius);
}

.swiper{
  border-radius: var(--radius);
}

/* Spacing helpers */
.section-sm{ padding: 3rem 0; }
.section{ padding: 5rem 0; }

/* Footer */
footer { background: #fff; }

/* Example media queries */
@media (max-width: 991.98px){
  .display-5{ font-size: 2.25rem; }
}



/**********************8*/
/* ---------- Header basics ---------- */
.site-header {
  background: #ffffff;
}

/* Logo sizing */
.site-header .logo-img {
  height: 36px;           /* tweak as needed */
  width: auto;
}

/* ---------- Pill CTA styling ---------- */
.cta-pill{
  --pill-blue: #0d6efd;                                /* Bootstrap primary-ish */
  --pill-sky: rgba(13, 110, 253, 0.08);               /* soft blue fill */
  --pill-border: rgba(13, 110, 253, 0.18);            /* subtle border */
  --pill-shadow: rgba(13,110,253,0.22);

  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .75rem 1.25rem;
  border-radius: 9999px;
  background: var(--pill-sky);
  color: var(--pill-blue);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid var(--pill-border);

  /* soft outer glow + subtle inner “bevel” */
  box-shadow:
    0 8px 20px -8px var(--pill-shadow),
    inset 0 1px 0 rgba(255,255,255,.6);

  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;           /* keeps it in one line on large screens */
}

/* on hover/focus */
.cta-pill:hover,
.cta-pill:focus{
  background: rgba(13,110,253,0.12);
  transform: translateY(-1px);
  box-shadow:
    0 12px 26px -10px var(--pill-shadow),
    inset 0 1px 0 rgba(255,255,255,.7);
}

/* icon weight */
.cta-pill i{ font-size: .95rem; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px){
  .cta-pill{
    font-size: .9rem;
    padding: .65rem 1rem;
  }
}

@media (max-width: 575.98px){
  .site-header .logo-img{ height: 30px; }
  .cta-pill{
    max-width: 100%;
    white-space: normal;       /* allow wrap on very small screens */
    text-align: right;
  }
}

/**********************8*/
/* ================= HERO STYLES ================= */
.hero-erp { min-height: 88vh; }
.hero-erp .hero-bg{
  background-image: url('https://lightblue-starling-122984.hostingersite.com/assets/img/hero32.jpg');
  background-size: cover;
  background-position: center;
  filter: opacity(.18);              /* faint image under gradient */
}

.hero-erp h1{
  font-size: 40px;
}
.hero-erp .hero-gradient{
  background: radial-gradient(1200px 600px at 70% 20%, rgba(13,110,253,.30) 0%, rgba(13,110,253,.10) 35%, transparent 70%),
              linear-gradient(90deg, #0d6efd 0%, #0b5ed7 40%, #0b5ed7 60%, #0a58ca 100%);
  mix-blend-mode: multiply;
  opacity: .85;
}

/* nicer white text shade */
.text-white-75{ color: rgba(255,255,255,.85); }

/* ========== Form Card (“glass” panel) ========== */
.hero-form-card{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(13,110,253,.10);
  border-radius: 20px;
  box-shadow: 0 12px 40px -10px rgba(13,110,253,.25);
}

/* Input icons */
.has-icon i{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #6c757d;
  pointer-events: none;
}

/* Inputs */
.hero-form-card .form-control,
.hero-form-card .form-select{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  height: 52px;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus{
  border-color: rgba(13,110,253,.4);
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.15);
}

/* Primary button close to the reference look */
.hero-form-card .btn-primary{
  background: #0d6efd;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 10px 24px -8px rgba(13,110,253,.45);
}
.hero-form-card .btn-primary:hover{
  background: #0b5ed7;
}

/* Spacing on big screens */
@media (min-width: 992px){
  .hero-erp{ padding-block: 64px; }
}

/* Mobile adjustments */
@media (max-width: 575.98px){
  .hero-erp { min-height: auto; }
  .hero-form-card{ border-radius: 16px; }
}

/**********************8*/
/* ===================== ERP Industry Cards ===================== */
.erp-industries-section {
  background-color: #f8fafc; /* light-muted bg */
}

.erp-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 24px 16px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}

.erp-card .icon {
  font-size: 2.75rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.erp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px -8px rgba(13, 110, 253, 0.2);
}

.erp-card:hover .icon {
  transform: scale(1.15);
}

.erp-card h3 {
  color: #1a1a1a;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
  .erp-card {
    padding: 20px 12px;
  }
  .erp-card .icon {
    font-size: 2.25rem;
  }
}

/**********************8*/
/* ===================== EARLY OFFER BAR ===================== */
.early-offer-bar {
  background-color: #0d6efd; /* Bootstrap primary blue */
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.2px;
}

.early-offer-bar p {
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 575.98px) {
  .early-offer-bar p {
    font-size: 0.85rem;
  }
}

/**********************8*/

/* ===================== SECTION STYLES ===================== */
.section-manufacturers { background: #fff; }

/* Image card with soft shadow + rounded corners */
.image-card{
  min-height: 420px;                    /* feel free to tweak */
  box-shadow: 0 22px 55px -18px rgba(13,110,253,.18);
}

/* bottom blue glow like the ref */
.image-card .image-glow{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -10%;
  height: 28%;
  background: radial-gradient(70% 100% at 50% 0%,
              rgba(13,110,253,.18) 0%, rgba(13,110,253,0) 70%);
  pointer-events: none;
}

/* Overlay pill band across the image (optional) */
.image-pill{
  position: absolute;
  left: 6%;
  right: 6%;
  top: 42%;
  transform: translateY(-50%);
  display: block;
  text-align: center;
  padding: 14px 18px;
  border-radius: 999px;
  color: #0d6efd;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(13,110,253,.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 600;
  box-shadow:
    0 10px 26px -12px rgba(13,110,253,.35),
    inset 0 1px 0 rgba(255,255,255,.8);
  text-decoration: none;
}

/* Hover micro-interaction */
.image-pill:hover{
  background: rgba(255,255,255,.75);
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .image-card{ min-height: 320px; }
  .image-pill{ font-size: .95rem; padding: 12px 16px; }
}
@media (max-width: 575.98px){
  .image-pill{ left: 8%; right: 8%; font-size: .9rem; }
}

/**********************8*/
/* ===================== WHY CHOOSE ERPidex ===================== */
.why-erpidex {
  background-color: #f8fafc;
}

.why-erpidex .feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(13,110,253,0);
}

.why-erpidex .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px -10px rgba(13,110,253,0.2);
  border-color: rgba(13,110,253,0.15);
}

.why-erpidex .icon {
  font-size: 1.75rem;
  color: #0d6efd;
}

/* Title and paragraph */
.why-erpidex h5 {
  color: #0d0d0d;
  font-size: 1.05rem;
  line-height: 1.4;
}

.why-erpidex p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive spacing tweaks */
@media (max-width: 767.98px) {
  .why-erpidex .feature-card { padding: 24px 18px; }
  .why-erpidex h5 { font-size: 1rem; }
  .why-erpidex p { font-size: 0.9rem; }
}

/**********************8*/
/* ===================== INDUSTRIES WE SERVE ===================== */
.industries-section{
  background:
    radial-gradient(1200px 400px at 50% 0%, rgba(13,110,253,0.06), transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 32%);
}

/* Card */
.industry-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 22px 20px 18px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 0 0 rgba(13,110,253,0);
  overflow: hidden;
}

/* Watermark icon bubble (top-right) */
.industry-card .icn{
  position: absolute;
  top: 14px; right: 14px;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(13,110,253,0.08);
  color: #0d6efd;
}

.industry-card .title{
  margin: 0 0 6px 0;
  padding-right: 58px; /* space for the icon bubble */
  font-weight: 700;
  color: #111827;
}

.industry-card .desc{
  color: #6b7280;
  margin-bottom: 12px;
}

/* Capability chips */
.industry-card .chips{
  display: flex; flex-wrap: wrap; gap: 6px;
}
.industry-card .chips span{
  font-size: .825rem;
  color: #3b82f6;
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.20);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Hover effect */
.industry-card:hover{
  transform: translateY(-6px);
  border-color: rgba(13,110,253,.22);
  box-shadow: 0 14px 34px -14px rgba(13,110,253,.28);
}

/* Ghost pill CTA */
.cta-pill-ghost{
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  color: #0d6efd;
  text-decoration: none;
  background: rgba(13,110,253,.10);
  border: 1px solid rgba(13,110,253,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  transition: background .25s ease, box-shadow .25s ease, transform .2s ease;
}
.cta-pill-ghost:hover{
  background: rgba(13,110,253,.14);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -12px rgba(13,110,253,.35), inset 0 1px 0 rgba(255,255,255,.8);
}

/* Responsive tweaks */
@media (max-width: 575.98px){
  .industry-card{ padding: 18px 16px; border-radius: 14px; }
  .industry-card .icn{ width: 38px; height: 38px; }
}

/**********************8*/
/* ===================== AI-ENABLED FEATURES ===================== */
.ai-features{
  /* blue diagonal gradient similar to the ref */
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,255,255,.06), rgba(255,255,255,0) 55%),
              linear-gradient(135deg, #0b5ed7 0%, #0aa2ff 100%);
}

/* glass cards */
.ai-card{
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 22px 20px;
  color: #e9f2ff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.ai-card h5{
  color: #fff;
  font-weight: 700;
  margin-bottom: .35rem;
}
.ai-card p{
  color: rgba(255,255,255,.8);
  margin: 0;
}

/* icon chip */
.ai-icn{
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-bottom: .6rem;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.ai-icn i{ font-size: 1.1rem; }

/* hover */
.ai-card:hover{
  transform: translateY(-6px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 18px 36px -16px rgba(0,0,0,0.35);
}

/* text helpers */
.text-white-75{ color: rgba(255,255,255,.85); }

/* responsive spacing */
@media (max-width: 575.98px){
  .ai-card{ border-radius: 14px; padding: 18px 16px; }
  .ai-icn{ width: 40px; height: 40px; border-radius: 10px; }
}

/**********************8*/

/* ===================== TRUSTED SECTION ===================== */
.trusted-section {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 80%);
  position: relative;
  overflow: hidden;
}

/* Add a faint animated blue blur glow behind */
.trusted-section::before {
  content: "";
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(circle at center, rgba(13,110,253,0.12), transparent 70%);
  filter: blur(70px);
  opacity: 0.6;
  pointer-events: none;
}

/* Client chips layout */
.client-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.client-list span {
  background: #fff;
  border: 1px solid rgba(13,110,253,0.15);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: #0b286f;
  font-weight: 500;
  box-shadow: 0 4px 12px -6px rgba(13,110,253,0.15);
  transition: all 0.3s ease;
}

.client-list span:hover {
  background: rgba(13,110,253,0.06);
  border-color: rgba(13,110,253,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px -10px rgba(13,110,253,0.25);
  color: #0d6efd;
}

/* Responsive */
@media (max-width: 575.98px){
  .client-list span {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

/**********************8*/
/* ===================== EASY-INTEGRATE MODULES ===================== */
.integrate-modules{
  background: linear-gradient(180deg,#ffffff 0%,#f7faff 70%,#ffffff 100%);
}

.section-kicker{
  color:#0d6efd;
  font-weight:600;
  letter-spacing:.4px;
}

/* Card */
.module-card{
  background:#fff;
  border:1px solid rgba(13,110,253,.12);
  border-radius:18px;
  padding:24px 20px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow:0 0 0 rgba(13,110,253,0);
}
.module-card:hover{
  transform:translateY(-6px);
  border-color:rgba(13,110,253,.28);
  box-shadow:0 18px 36px -18px rgba(13,110,253,.28);
}

/* Icon badge */
.icon-wrap{
  display:inline-grid; place-items:center;
  width:50px; height:50px;
  border-radius:14px;
  background: rgba(13,110,253,.10);
  color:#0d6efd;
  font-size:1.2rem;
  margin-bottom:12px;
}

/* Title */
.module-title{
  font-weight:800;
  color:#0f172a;
  font-size:1.05rem;
  margin-bottom:10px;
}

/* Chips (replacing bullet list) */
.chips{ display:flex; flex-wrap:wrap; gap:8px; }
.chips span{
  font-size:.9rem;
  line-height:1.35;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(13,110,253,.08);
  color:#0b3f9c;
  border:1px solid rgba(13,110,253,.18);
  white-space:nowrap;
}

/* Responsive */
@media (max-width: 767.98px){
  .module-card{ padding:20px 16px; border-radius:14px; }
  .icon-wrap{ width:44px; height:44px; font-size:1.05rem; }
  .chips span{ font-size:.86rem; }
}

/**********************8*/
/* ===================== #1 ERP PROVIDER ===================== */
.erp-provider{
  background: linear-gradient(180deg,#ffffff 0%, #f8fbff 60%, #ffffff 100%);
}

/* list pills */
.list-pill{
  background:#fff;
  border:1px solid rgba(13,110,253,.18);
  border-radius:14px;
  padding:16px 18px;
  margin-bottom:18px;
  text-decoration:none;
  color:#0f172a;
  transition:transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  box-shadow:0 0 0 rgba(13,110,253,0);
}
.list-pill:hover{
  transform:translateY(-3px);
  border-color:rgba(13,110,253,.35);
  box-shadow:0 12px 26px -12px rgba(13,110,253,.28);
}

.lp-icn{
  width:36px;height:36px;
  display:inline-grid;place-items:center;
  margin-right:12px;
  border-radius:10px;
  background:rgba(13,110,253,.08);
  color:#0d6efd;
  flex:0 0 36px;
}
.lp-icn i{ font-size:1rem; }

/* pill CTA */
.cta-pill-primary{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 26px;
  border-radius:999px;
  background:#0d6efd;
  color:#fff; text-decoration:none; font-weight:600;
  box-shadow:0 18px 30px -14px rgba(13,110,253,.45);
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.cta-pill-primary:hover{ background:#0b5ed7; transform:translateY(-1px); }

/* responsive */
@media (max-width: 991.98px){
  .list-pill{ padding:14px 16px; }
}
@media (max-width: 575.98px){
  .lp-icn{ width:32px; height:32px; margin-right:10px; }
}

/**********************8*/
/* ===================== EASY-INTEGRATE MODULES ===================== */
.integrate-modules {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 80%);
}

/* Card */
.module-card {
  background: #fff;
  border: 1px solid rgba(13, 110, 253, 0.12);
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 0 0 rgba(13,110,253,0);
  transition: all 0.3s ease;
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 110, 253, 0.25);
  box-shadow: 0 18px 36px -18px rgba(13,110,253,0.25);
}

/* Icon */
.icon-wrap {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

/* Headings & text */
.module-card h5 {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.module-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.module-card ul li {
  color: #5f6b7b;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  padding-left: 12px;
}
.module-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 767.98px) {
  .module-card {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}


/**********************8*/
/* ===================== Gradient section ===================== */
.why-counters{
  background: linear-gradient(135deg, #0b5ed7 0%, #12a4ff 100%);
}

/* small helpers to echo your screenshot */
.why-counters .opacity-90{ opacity:.9; }
.why-counters .opacity-75{ opacity:.75; }

/* stat blocks */
.stat{
  padding: 8px 6px;
}
.stat-value{
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: .5px;
  text-shadow: 0 6px 22px rgba(0,0,0,.18);
}
.stat-label{
  margin-top:.25rem;
  font-size: clamp(.95rem, 1.6vw, 1.125rem);
  opacity:.85;
}

/* spacing on mobile */
@media (max-width: 575.98px){
  .why-counters .stat{ padding: 4px 0; }
}

/**********************8*/

/* ===================== WHY MANUFACTURING ERP ===================== */
.why-mfg-erp { background:#fff; }

/* CTA pill vibe */
.cta-rounded{
  border-radius: 999px;
  padding-inline: 28px;
  box-shadow: 0 18px 30px -14px rgba(13,110,253,.35);
}
.cta-rounded:hover{ box-shadow: 0 22px 34px -16px rgba(13,110,253,.45); }

/* Tick list */
.tick-list{
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.tick-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #2a3443;
  line-height: 1.6;
}
.tick-list li::before{
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: #0d6efd;
  font-weight: 700;
}

/* Image card + soft blue glow */
.why-img-wrap{
  min-height: 380px;             /* adjust if needed */
  background:#f1f6ff;            /* fallback while image loads */
  box-shadow: 0 18px 45px -24px rgba(13,110,253,.22);
}
.why-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-img-wrap .img-glow{
  content:"";
  position:absolute; left:-6%; right:-6%; bottom:-10%;
  height: 40%;
  background: radial-gradient(60% 100% at 50% 0%, rgba(13,110,253,.18), rgba(13,110,253,0) 70%);
  pointer-events:none;
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .why-img-wrap{ min-height: 300px; }
}
@media (max-width: 575.98px){
  .why-img-wrap{ min-height: 240px; }
}

/**********************8*/
/**********************8*/
/**********************8*/
/**********************8*/


@media (max-width: 900px){
  .site-logo{
    margin-bottom: 20px;
  }
  .hero-erp h1 {
  font-size: 22px;
}
 .hero-erp h2 {
  font-size: 16px;
}
 .hero-erp p {
  font-size: 16px;
}
.section-manufacturers p{
  font-size: 16px !important;
}
.text-secondary{
   font-size: 16px !important;
}
}

/*****************************/
/* ---- Intro block ---- */
.section-intro-modules { 
  background: linear-gradient(180deg,#ffffff 0%,#f7faff 80%,#ffffff 100%);
}
.kicker { letter-spacing:.3px; }

/* ---- Testimonials ---- */
.section-testimonials{ background:#ffffff; }
.t-card{
  background: #f8fbff;
  border:1px solid rgba(13,110,253,.15);
  border-radius:18px;
  padding:28px 22px;
  height:100%;
  box-shadow: 0 12px 30px -18px rgba(13,110,253,.2);
}
.t-stars{ color:#ffd166; letter-spacing:2px; font-size:1.05rem; margin-bottom:.5rem; }
.t-quote{ color:#243b55; font-size:1.05rem; line-height:1.6; margin:0 0 .75rem 0; }
.t-meta{ color:#506079; }

/* Swiper controls themed */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next{
  color:#0d6efd;
  width: 40px; height: 40px;
}
.testimonials-swiper .swiper-pagination-bullet{ background: rgba(13,110,253,.35); }
.testimonials-swiper .swiper-pagination-bullet-active{ background:#0d6efd; }

/* ---- Implementation ---- */
.section-implementation{ background: linear-gradient(180deg,#ffffff 0%,#f8fbff 70%); }
.checklist{ list-style:none; padding:0; margin:0 0 1rem 0; }
.checklist li{
  position:relative; padding-left:28px; margin-bottom:.6rem; color:#1f2d3d;
}
.checklist li::before{
  content:"✔"; position:absolute; left:0; top:0; color:#0d6efd; font-weight:800;
}
.impl-card{ min-height: 380px; background:#eef5ff; box-shadow:0 20px 50px -24px rgba(13,110,253,.28); }
.impl-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.impl-glow{ content:""; position:absolute; left:-8%; right:-8%; bottom:-12%; height:40%;
  background: radial-gradient(60% 100% at 50% 0%, rgba(13,110,253,.2), rgba(13,110,253,0) 70%);
}

/* ---- Closing CTA ---- */
.section-closing-cta{
  background: linear-gradient(135deg,#0b5ed7 0%, #12a4ff 100%);
}
.text-white-75{ color: rgba(255,255,255,.85); }

/******************/

/* ===== Testimonials (Swiper) ===== */
.testimonials { background: #fff; }

.testimonial-item{
  background: #f8fbff;
  border: 1px solid rgba(13,110,253,.15);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex; flex-direction: column;
  box-shadow: 0 12px 30px -18px rgba(13,110,253,.18);
  height: 100%;
}
.t-quote-icon{
  color:#0d6efd; font-size:1.25rem; margin-bottom:.5rem;
  width:40px; height:40px; display:grid; place-items:center;
  background: rgba(13,110,253,.10);
  border-radius: 10px;
}
.t-text{
  color:#233143; line-height:1.6; font-size:1.02rem;
  margin-bottom: .9rem;
}
.t-meta .t-name{
  font-size:1rem; font-weight:700; margin:0;
}
.t-meta .t-role{
  font-size:.92rem; color:#6b7a8c; margin:2px 0 0 0;
}

/* Swiper chrome */
.testimonials-swiper{ padding-bottom: 48px; } /* room for bullets */
.testimonials-swiper .swiper-slide{ height: auto; } /* allow card height */
.testimonials-swiper .swiper-pagination-bullet { background: rgba(13,110,253,.35); }
.testimonials-swiper .swiper-pagination-bullet-active { background:#0d6efd; }
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next{
  color:#0d6efd; width:42px; height:42px;
}

