/* =========================================================
   services-page.css  —  Webexpert Infotech Services Page
   Design tokens inherited from common_style.css / style.css
   Primary    : #5951ed
   Secondary  : #A6EF67
   Heading    : #111111
   Text       : #696969
   Fonts      : Plus Jakarta Sans (headings), Manrope (body)
   ========================================================= */

/* ── Utility helpers ──────────────────────────────────── */
.sp-section {
  padding: 80px 0;
}

.sp-section-sm {
  padding: 60px 0;
}

.sp-section-lg {
  padding: 100px 0;
}

.sp-gray-bg {
  background-color: #F0F2F4;
}

.sp-dark-bg {
  background: linear-gradient(135deg, #0d0e1a 0%, #1a1c33 100%);
}

.sp-primary-bg {
  background-color: #5951ed;
}

/* ── Section Label / Sub-heading ─────────────────────── */
.sp-label {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    background: #f16e5e0d;
    color: #f16e5e;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ── Hero Section ────────────────────────────────────── */
.sp-hero {
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
     background: linear-gradient(90deg, #d65e52 0%, #043c88 100%);
}

.sp-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
     background: radial-gradient(circle, rgb(6 68 152 / 51%) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  pointer-events: none;
}

.sp-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
      background: radial-gradient(circle, rgb(255 255 255 / 16%) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.sp-hero .sp-label {
  background: rgba(255, 255, 255, .08);
  color: #fff;
      line-height: normal;
    text-align: center;
}

.sp-hero h1 {
  font-size: 54px;
  line-height: 64px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.sp-hero h1 span {
    color: #fff;
}

.sp-hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  line-height: 30px;
  max-width: 560px;
  margin-bottom: 36px;
}

.sp-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sp-hero-buttons .btn-primary-sp {
  background: #064498;
  color: #fff;
     padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: all .3s;
  cursor: pointer;
}

.sp-hero-buttons .btn-primary-sp:hover {
  background: #fff;
  color: #f16e5e;
}

.sp-hero-buttons .btn-outline-sp {
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, .4);
  transition: all .3s;
  cursor: pointer;
}

.sp-hero-buttons .btn-outline-sp:hover {
border-color: #ffffff;
    color: #ffffff;
}

/* Hero graphic */
.sp-hero-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-hero-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.sp-hero-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #5951ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 28px;
  color: #fff;
}

.sp-hero-card h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.sp-hero-card p {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  line-height: 20px;
  margin: 0;
}

.sp-hero-stat-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.sp-hero-stat {
     background: rgb(255 255 255);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  flex: 1;
}

.sp-hero-stat h4 {
     color: #064498;
  font-size: 28px;
  margin-bottom: 4px;
}

.sp-hero-stat p {
    color: #333;
    font-size: 12px;
    margin: 0;
    line-height: normal;
}

/* ── Trusted-by / Client Logos ───────────────────────── */
.sp-clients {
  padding: 50px 0 40px;
  
}

.sp-clients-label {
  text-align: center;
  font-weight: 600;
  color: #696969;
  font-size: 15px;
  margin-bottom: 28px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Slider wrapper with edge-fade masks */
.sp-logo-slider-wrap {
  position: relative;
  overflow: hidden;
}

.sp-logo-slider-wrap::before,
.sp-logo-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.sp-logo-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.sp-logo-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.sp-logo-item {
  /*opacity: .45;*/
  filter: grayscale(1);
  transition: opacity .35s, filter .35s;
  font-weight: 800;
  font-size: 17px;
  color: #333;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  white-space: nowrap;
  display: inline-flex !important;
  align-items: center;
  cursor: default;
}

.sp-logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
  border-color: rgba(89, 81, 237, .2);
  color: #5951ed;
}

/* ── Services Card Grid ──────────────────────────────── */
.sp-service-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px;
  border: 1px solid rgba(16, 16, 16, .08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
  transition: all .35s;
  height: 100%;
  position: relative;
  overflow: hidden;
      display: flex;
    flex-direction: column;
}

.sp-service-card::before {
     content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(241 110 94 / 7%) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s;
    z-index: -1;
}

.sp-service-card:hover {
transform: translateY(-6px);
    box-shadow: 0 20px 50px rgb(241 110 94 / 12%);
    border-color: rgb(241 110 94 / 28%);
}

.sp-service-card:hover::before {
  opacity: 1;
}

.sp-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(89, 81, 237, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #5951ed;
  transition: all .35s;
}

.sp-service-card:hover .sp-service-icon {
  background: #5951ed;
  color: #fff;
}

.sp-service-card h5 {
  font-size: 18px;
  color: #111;
  margin-bottom: 10px;
  line-height: 26px;
}

.sp-service-card p {
  color: #696969;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

.sp-service-card .sp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
     color: #f16e5e;
  transition: gap .25s;
      margin-top: auto;
}

.sp-service-card .sp-card-link:hover {
  gap: 10px;
}

/* ── Why Choose Us ───────────────────────────────────── */
.sp-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.sp-why-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(89, 81, 237, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #f16e5e;
      border: #e7e7e7 solid 1px;background: rgb(255 255 255);
}

.sp-why-item h6 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.sp-why-item p {
  color: #696969;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

.sp-why-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.sp-why-image-wrap img {
  width: 100%;
  display: block;
}

.sp-why-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-why-badge .badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #064498;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.sp-why-badge h6 {
  font-size: 15px;
  margin-bottom: 2px;
  color: #111;
}

.sp-why-badge p {
  font-size: 12px;
  color: #696969;
  margin: 0;
}

/* ── Process / Stepper ───────────────────────────────── */
.sp-process-wrap {
  position: relative;
}

.sp-process-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 16, 16, .07);
  margin-bottom: 20px;
  transition: all .3s;
  position: relative;
}

.sp-process-item:hover {
  border-color: rgba(89, 81, 237, .3);
  box-shadow: 0 8px 30px rgba(89, 81, 237, .08);
}

.sp-process-num {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0b4c84;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-process-item.alt-step .sp-process-num {
    background: #f16e5e;
    color: #ffffff;
}

.sp-process-item h5 {
  font-size: 18px;
  color: #111;
  margin-bottom: 6px;
}

.sp-process-item p {
  color: #696969;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

/* Process connector */
.sp-process-item::after {
  content: '';
  position: absolute;
  left: 53px;
  bottom: -20px;
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, rgba(89, 81, 237, .4), transparent);
}

.sp-process-item:last-child::after {
  display: none;
}

/* Horizontal stepper (desktop) */
.sp-stepper {
  display: flex;
  gap: 0;
  position: relative;
}

.sp-stepper::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
     background: linear-gradient(90deg, #064498, #f16e5e);
}

.sp-step-item {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.sp-step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #064498;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all .35s;
}

.sp-step-item:hover .sp-step-circle {
  background: #f16e5e;
  color: #fff;
}

.sp-step-item h6 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  line-height: 20px;
}

.sp-step-item p {
  font-size: 13px;
  color: #696969;
  line-height: 20px;
}

/* ── Consultation CTA Band ───────────────────────────── */
.sp-cta-band {
  background: linear-gradient(135deg, #5951ed 0%, #3730cc 100%);
  border-radius: 24px;
  padding: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-cta-band::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(166, 239, 103, .15);
  top: -100px;
  right: -100px;
}

.sp-cta-band h2 {
  color: #fff;
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 16px;
}

.sp-cta-band p {
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
  margin-bottom: 32px;
}

.sp-cta-band .btn-cta-white {
  background: #A6EF67;
  color: #111;
  padding: 16px 38px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  display: inline-block;
}

.sp-cta-band .btn-cta-white:hover {
  background: #fff;
  color: #5951ed;
  transform: translateY(-2px);
}

/* ── Industries ──────────────────────────────────────── */
.sp-industry-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(16, 16, 16, .07);
  transition: all .35s;
  height: 100%;
}

.sp-industry-card:hover {
  transform: translateY(-5px);
    box-shadow: 0 20px 50px rgb(241 110 94 / 12%);
    border-color: rgb(241 110 94 / 28%);
}

.sp-industry-card .ind-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  transition: all .35s;
}

.sp-industry-card h6 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 22px;
}

.sp-industry-card:hover .ind-icon {
    background: #f16e5e !important;
    color: #fff !important;
}

/* ── Benefits ────────────────────────────────────────── */
.sp-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(16, 16, 16, .07);
  transition: all .3s;
}
.sp-benefit-item {
  height: 100%;
  align-items: flex-start; /* better alignment for text */
}
.sp-benefit-item:hover {
    border-color: rgb(6 68 152 / 25%);
    box-shadow: 0 8px 24px rgb(6 68 152 / 15%);
}

.sp-benefit-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(89, 81, 237, .1);
  color: #5951ed;
}

.sp-benefit-item h6 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 9px;
}

.sp-benefit-item p {
  font-size: 13px;
  color: #696969;
  margin: 0;
  line-height: 19px;
}

/* ── Case Studies ────────────────────────────────────── */
.sp-case-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, .07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
  transition: all .35s;
  height: 100%;
}

.sp-case-card:hover {
  transform: translateY(-6px);
    box-shadow: 0 20px 50px rgb(6 68 152 / 13%);
}

.sp-case-header {
  padding: 24px 28px 20px;
  background: linear-gradient(135deg, #256ed1, #064498);
  color: #fff;
}

.sp-case-header .case-tag {
    display: inline-block;
    background: rgb(255 255 255 / 7%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 0px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sp-case-header h5 {
  color: #fff;
  font-size: 17px;
  line-height: 24px;
}

.sp-case-body {
  padding: 24px 28px;
}

.sp-case-kv {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.sp-case-kv strong {
  min-width: 80px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.sp-case-kv span {
  font-size: 13px;
  color: #696969;
  line-height: 20px;
}

.sp-case-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f0f2f4;
}

.sp-case-metric {
  text-align: center;
  flex: 1;
}

.sp-case-metric h4 {
  color: #f16e5e;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 2px;
}

.sp-case-metric p {
  color: #696969;
  font-size: 12px;
  margin: 0;
}

/* ── Testimonials ────────────────────────────────────── */
.sp-testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px;
  border: 1px solid rgba(16, 16, 16, .07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
  height: 100%;
  transition: all .35s;
}

.sp-testi-card:hover {
    border-color: rgb(6 68 152 / 15%);
    box-shadow: 0 12px 36px rgb(6 68 152 / 9%);
}

.sp-testi-stars {
  color: #FCA326;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.sp-testi-card p.testi-text {
  color: #444;
  font-size: 15px;
  line-height: 26px;
  font-style: italic;
  margin-bottom: 22px;
}

.sp-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
      background: linear-gradient(90deg, #e66c60 0%, #064498 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.sp-testi-author h6 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.sp-testi-author span {
  font-size: 12px;
  color: #696969;
}

/* ── Blog Cards ──────────────────────────────────────── */
.sp-blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, .07);
  transition: all .35s;
  height: 100%;
}

.sp-blog-card:hover {
  transform: translateY(-5px);
    box-shadow: 0 16px 40px rgb(6 68 152 / 4%);
}

.sp-blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #5951ed, #A6EF67);
  /* fallback */
}

.sp-blog-body {
  padding: 24px 22px;
}

.sp-blog-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #696969;
}

.sp-blog-meta .meta-cat {
 color: #f16e5e;
  font-weight: 700;
}

.sp-blog-body h5 {
  font-size: 17px;
  line-height: 24px;
  color: #111;
  margin-bottom: 10px;
  font-weight: 700;
}

.sp-blog-body p {
  color: #696969;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 16px;
}

.sp-blog-read {
  font-size: 14px;
  font-weight: 700;
  color: #5951ed;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s;
}

.sp-blog-read:hover {
  gap: 10px;
  color: #5951ed;
}

/* ── FAQ Accordion ───────────────────────────────────── */
.sp-faq-item {
  border: 1px solid rgba(16, 16, 16, .08);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .3s;
}

.sp-faq-item:hover {
  box-shadow: 0 4px 20px rgba(89, 81, 237, .08);
}

.sp-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  gap: 16px;
}

.sp-faq-question .faq-arrow {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(89, 81, 237, .08);
  display: flex;
  align-items: center;
  justify-content: center;
     color: #064498;
  transition: all .3s;
  font-size: 14px;
}
.sp-blog-card .sp-blog-body .sp-blog-read{
           color: #f16e5e;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.sp-faq-item.active .sp-faq-question .faq-arrow {
    background: #f16e5e;
  color: #fff;
  transform: rotate(45deg);
}

.sp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}

.sp-faq-item.active .sp-faq-answer {
  max-height: 400px;
}

.sp-faq-answer-inner {
  padding: 0 24px 22px;
  color: #696969;
  font-size: 15px;
  line-height: 26px;
}

/* ── Final CTA Section ───────────────────────────────── */
.sp-final-cta {
  background:linear-gradient(90deg, #d65e52 0%, #043c88 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-final-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
background: radial-gradient(circle, rgb(255 255 255 / 13%) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.sp-final-cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
     background: radial-gradient(circle, rgb(241 110 94 / 50%) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.sp-final-cta h2 {
  /* font-size: 44px; */
  line-height: 56px;
  color: #fff;
  margin-bottom: 16px;
}

.sp-final-cta h2 span {
    color: #f16e5e;
}

.sp-final-cta p {
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  margin-bottom: 40px;
}

.sp-final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.sp-section-sm .btn-primary-sp{
    padding: 16px 32px;
    border-radius: 10px;
    background: #d46964;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.sp-section-sm .btn-primary-sp:hover{
        background: #fff;
    color: #d46964;
}


.sp-final-cta .btn-primary-sp {
    background: #ffffff;
    color: #064498;
    border-color: transparent;
}


.sp-final-cta .btn-primary-sp:hover {
  background: #fff;
     color: #f16e5e;
}
.sp-final-cta .btn-white-sp,
.sp-final-cta .btn-outline-sp {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.sp-final-cta .btn-white-sp:hover,
.sp-final-cta .btn-outline-sp:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.8);
  color: #fff;
}

/* ── Breadcrumb banner ───────────────────────────────── */
.sp-page-banner {
  background: linear-gradient(135deg, #5951ed, #3730cc);
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}

.sp-page-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(166, 239, 103, .15);
  top: -200px;
  right: -100px;
}

.sp-page-banner h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 16px;
}

.sp-page-banner .sp-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.sp-page-banner .sp-breadcrumb a {
  color: #A6EF67;
}

.sp-page-banner .sp-breadcrumb span {
  color: rgba(255, 255, 255, .5);
}

/* ── Outline / Border buttons ────────────────────────── */
.btn-outline-primary-sp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
    border: 2px solid #064498;
    color: #064498;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
  background: transparent;
  cursor: pointer;
}

.btn-outline-primary-sp:hover {
    background: #ffffff;
    color: #064498;
}

.btn-white-sp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.btn-white-sp:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}


/* ── Summary stats bar ───────────────────────────────── */
.sp-stats-bar {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.sp-stat-col {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px;
  border-right: 1px solid #f0f2f4;
}

.sp-stat-col:last-child {
  border-right: none;
}

.sp-stat-col h3 {
  color: #5951ed;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 6px;
}

.sp-stat-col p {
  color: #696969;
  font-size: 14px;
  margin: 0;
}

.cta-gradietn {
    background: linear-gradient(90deg, #0f50a8 0%, #003377 100%);
    padding: 40px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* ── Responsive Breakpoints ──────────────────────────── */
@media (max-width: 991px) {
    .sp-process-num { width: 42px; min-width: 42px; height: 42px; font-size: 15px; }
    .sp-process-item { padding: 1rem; }
    .sp-industry-card { padding: 1rem; border-radius: 12px; }
    .sp-section h2 { font-size: 24px; line-height: normal !important; }
    .cta-gradietn { padding: 40px 20px; }
    .sp-final-cta { padding: 50px 0; }
    .sp-faq-question { padding: 16px 20px; }
    .sp-hero-card-icon { width: 45px; height: 45px; font-size: 14px; border-radius: 10px; }
    .sp-hero { padding: 120px 0 70px; }
    .sp-hero h1 { font-size: 38px; line-height: 50px; }
    .sp-stepper { flex-direction: column; gap: 24px; }
    .sp-stepper::before { display: none; }
    .sp-step-item { text-align: left; display: flex; align-items: flex-start; gap: 18px; }
    .sp-step-circle { margin: 0; flex-shrink: 0; }
    .sp-cta-band { padding: 50px 30px; }
    .sp-cta-band h2 { font-size: 28px; line-height: 38px; }
    .sp-final-cta h2 { font-size: 30px; line-height: 40px; }
    .sp-stats-bar { gap: 20px; }
    .sp-stat-col { border-right: none; }
    .sp-process-item::after { left: 36px; }
    .btn-outline-primary-sp { margin-top: 1rem; }
}

@media (max-width: 767px) {
    .sp-hero-card { padding: 16px; }
    .sp-hero h1 { font-size: 30px; line-height: 42px; }
    .sp-hero-stat-row { flex-direction: column; gap: 12px; }
    .sp-logo-grid { gap: 20px 28px; }
    .sp-section, .sp-section-sm, .sp-section-lg { padding: 55px 0; }
    .sp-page-banner { padding: 90px 0 50px; }
    .sp-page-banner h1 { font-size: 30px; }
}

/* =========================================================
   Industry Pages Framework (Reusable)
   ========================================================= */

.industry-page {
    --ind-primary: #064498;
    --ind-secondary: #f16e5e;
    --ind-accent: #1abc9c;
}

.healthcare-theme {
    --ind-primary: #064498;
    --ind-secondary: #f16e5e;
}

.industry-page .scroll-down,
.industry-page .mouse-scroll,
.industry-page .scroll-indicator,
.industry-page .mouse-wrapper,
.industry-page .scroll-btn {
    display: none !important;
}

.industry-page .sp-section .sp-label {
    background: #f16e5e0d;
    color: #f16e5e;
    border: none;
}

.industry-page .sp-service-icon {
    background: rgba(6, 68, 152, 0.1);
    color: var(--ind-primary);
}

.industry-page .sp-step-circle {
    background: var(--ind-primary);
}

.industry-page .sp-why-icon,
.industry-page .sp-benefit-icon {
    background: rgba(6, 68, 152, 0.1);
    color: var(--ind-primary);
}

.sp-final-cta {
    margin-bottom: 0 !important;
}

/* ── Attractive Tech Section ── */
.tech-arsenal-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.tech-arsenal-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.tech-card-head { padding: 30px 20px; text-align: center; color: #fff; }
.tech-icon {
    width: 60px; height: 60px; background: rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 24px;
}
.tech-card-head h6 { font-size: 18px; font-weight: 800; margin: 0; letter-spacing: 0.5px; }
.tech-card-body { padding: 25px 20px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tech-pill {
    padding: 6px 14px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 50px;
    font-size: 13px; font-weight: 700; color: #475569; transition: all 0.2s ease;
}
.tech-pill:hover { background: #fff; border-color: #064498; color: #064498; }


/* =========================================================
   Slick Slider Overrides — Logo Ticker & Testimonials
   ========================================================= */

/* ── Logo ticker ─────────────────────────────────────── */
.sp-logo-slider .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 24px;
}

.sp-logo-slider .slick-track {
    display: flex !important;
    align-items: center;
}

/* ── Testimonials slider ─────────────────────────────── */
.sp-testi-slider .slick-slide {
    padding: 0 12px;
    height: auto;
}

.sp-testi-slider .slick-slide > div {
    height: 100%;
}

.sp-testi-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.sp-testi-slider .slick-dots {
    bottom: -40px;
}

.sp-testi-slider .slick-dots li button:before {
    font-size: 10px;
    color: #5951ed;
}

.sp-testi-slider .slick-dots li.slick-active button:before {
    color: #5951ed;
    opacity: 1;
}

.sp-testi-slider .slick-prev,
.sp-testi-slider .slick-next {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    z-index: 2;
}

.sp-testi-slider .slick-prev {
    left: -22px;
}

.sp-testi-slider .slick-next {
    right: -22px;
}

.sp-testi-slider .slick-prev:before,
.sp-testi-slider .slick-next:before {
    color: #5951ed;
    font-size: 18px;
}

.sp-testi-slider .slick-prev:hover,
.sp-testi-slider .slick-next:hover {
    background: #5951ed;
}

.sp-testi-slider .slick-prev:hover:before,
.sp-testi-slider .slick-next:hover:before {
    color: #fff;
}


/* =========================================================
   Shared inline styles — service & industry pages
   (previously duplicated as <style> blocks in every view)
   ========================================================= */

/* ── Slick testimonials slider (tighter variant) ─────── */
.sp-testi-slider .slick-slide {
    padding: 0 10px;
    height: inherit;
}

.sp-testi-slider .slick-list {
    margin: 0 -10px;
}

.sp-testi-slider .slick-dots {
    margin-top: 40px;
    position: relative;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.slick-dots li button {
    padding: 2px 8px;
    background: #0644982e;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.slick-dots li.slick-active button {
    background: #f16e5e;
}

.sp-testi-slider .slick-dots li button:before {
    font-size: 10px;
    color: #5951ed;
    opacity: 0.2;
}

.sp-testi-slider .slick-dots li.slick-active button:before {
    color: #5951ed;
    opacity: 1;
}

/* ── Footer gap fix ──────────────────────────────────── */
body {
    background-color: #0c1c18;
}

.seo-footer {
    margin-top: -1px !important;
    border-top: none !important;
    position: relative;
    z-index: 2;
    background-color: #0c1c18 !important;
}

.sp-final-cta {
    margin-bottom: 0 !important;
    position: relative;
    z-index: 1;
}

.footer-widget-area {
    padding-top: 100px !important;
}

/* ── Section spacing overrides ───────────────────────── */
section.sp-section,
section.sp-section-sm,
section.sp-section-lg,
section.sp-clients {
    background-color: #fff;
    margin: 0 !important;
    padding: 90px 0;
    border: 0;
}

section.sp-section.sp-gray-bg {
    background-color: #F0F2F4 !important;
}

section.sp-clients {
    padding: 60px 0;
}

section.sp-hero,
section.sp-dark-bg {
    background-color: transparent !important;
}

@media (max-width: 991px) {
    section.sp-section,
    section.sp-section-sm,
    section.sp-section-lg,
    section.sp-clients {
        padding: 40px 0;
    }
}

/* ── Highlight card float animation ─────────────────── */
.sp-highlight-card {
    animation: spFloat 4s ease-in-out infinite;
    border: 0;
}

@keyframes spFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.highlight-icon {
    animation: spIconPulse 2s infinite;
}

@keyframes spIconPulse {
    0%   { box-shadow: 0 0 0 0 rgb(255 255 255 / 40%); }
    70%  { box-shadow: 0 0 0 15px rgba(166, 239, 103, 0); }
    100% { box-shadow: 0 0 0 0 rgba(166, 239, 103, 0); }
}

.pulse-arrow {
    animation: arrowLeftRight 1.5s infinite;
}

@keyframes arrowLeftRight {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(5px); }
}

/* =========================================================
   Industry pages — Tech tabs (glassmorphism)
   (previously duplicated as <style> blocks in every industry view)
   ========================================================= */

/* ── Industry footer gap fix variant ────────────────── */
.seo-footer {
    margin-top: -36px !important;
    padding-top: 0 !important;
}

.sp-final-cta {
    position: relative;
    z-index: 5;
}

.footer-widget-area {
    padding-top: 70px !important;
}

/* ── Vertical tabs wrapper ───────────────────────────── */
.sp-tech-v-tabs-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    padding: 30px;
    height: 100%;
}

.sp-tech-v-tabs-nav {
    gap: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sp-tech-v-tabs-nav .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    color: #555;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.sp-tech-v-tabs-nav .nav-link i {
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.sp-tech-v-tabs-nav .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 68, 152, 0.1);
}

.sp-tech-v-tabs-nav .nav-link.active {
    background: linear-gradient(135deg, #064498, #1a5cad);
    color: #fff;
    box-shadow: 0 10px 20px rgba(6, 68, 152, 0.2);
}

.sp-tech-v-tabs-nav .nav-link.active i {
    opacity: 1;
    transform: translateX(0);
}

/* ── Tech item card ──────────────────────────────────── */
.sp-tech-item-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sp-tech-item-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 68, 152, 0.05), rgba(241, 110, 94, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.sp-tech-item-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.sp-tech-item-card:hover::before {
    opacity: 1;
}

.sp-tech-item-card i {
    font-size: 38px;
    margin-bottom: 18px;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.sp-tech-item-card:hover i {
    transform: scale(1.1);
}

.sp-tech-item-card h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    position: relative;
    z-index: 2;
}


/* ==========================================================
   HOMEPAGE STYLES — website-pages.css
   Webexpert Infotech — New Homepage Components
   ========================================================== */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
    --hp-primary:   #064498;
    --hp-secondary: #f16e5e;
    --hp-accent:    #20c997;
    --hp-dark:      #111111;
    --hp-text:      #696969;
    --hp-bg-gray:   #F0F2F4;
    --hp-white:     #ffffff;
    --hp-gradient:  linear-gradient(90deg, #d65e52 0%, #043c88 100%);
}

/* ── Shared section headings ────────────────────────────── */
.home-section-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--hp-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.home-section-heading span {
    color: var(--hp-primary);
}

.home-section-sub {
    color: var(--hp-text);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mt-50 { margin-top: 50px; }

/* ==========================================
   HERO SECTION
   ========================================== */
.home-hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    background: var(--hp-gradient);
}

/* Animated background blobs */
.home-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: hhBlobFloat 8s ease-in-out infinite;
}

.hh-blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(6,68,152,.7) 0%, transparent 70%);
    top: -150px; left: -100px;
    animation-delay: 0s;
}

.hh-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(241,110,94,.6) 0%, transparent 70%);
    bottom: -100px; right: -80px;
    animation-delay: 3s;
}

.hh-blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
    top: 40%; left: 40%;
    animation-delay: 5s;
}

.hh-grid-overlay {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes hhBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(20px, -20px) scale(1.05); }
    66%       { transform: translate(-15px, 15px) scale(0.95); }
}

/* Badge */
.hh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
}

.hh-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #A6EF67;
    animation: hhPulse 2s infinite;
}

@keyframes hhPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(166,239,103,.6); }
    50%       { box-shadow: 0 0 0 6px rgba(166,239,103,0); }
}

/* Hero heading */
.hh-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hh-highlight {
    color: #A6EF67;
    position: relative;
}

.hh-intro {
    color: rgba(255,255,255,.8);
    font-size: 17px;
    line-height: 30px;
    max-width: 540px;
    margin-bottom: 36px;
}

/* CTA buttons */
.hh-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hh-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: #fff;
    color: var(--hp-primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid transparent;
    transition: all .3s;
    text-decoration: none;
}

.hh-btn-primary:hover {
    background: var(--hp-secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(241,110,94,.35);
}

.hh-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    background: transparent;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,.45);
    transition: all .3s;
    text-decoration: none;
}

.hh-btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
}

/* Trust badges row */
.hh-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hh-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 600;
}

.hh-trust-item i { color: #A6EF67; font-size: 14px; }

.hh-trust-sep {
    width: 1px; height: 16px;
    background: rgba(255,255,255,.25);
}

/* Hero visual / floating cards */
.hh-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hh-illustration {
    width: 100%;
    max-width: 480px;
    animation: hhFloat 5s ease-in-out infinite;
}

.hh-illustration img { width: 100%; display: block; }

@keyframes hhFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

.hh-float-card {
    position: absolute;
    background: rgba(255,255,255,.95);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    backdrop-filter: blur(10px);
    animation: hhCardFloat 4s ease-in-out infinite;
}

.hh-float-top-left    { top: 10%; left: -10%; animation-delay: 0s; }
.hh-float-bottom-right{ bottom: 15%; right: -8%; animation-delay: 1.5s; }
.hh-float-bottom-left { bottom: 5%; left: 0%; animation-delay: 3s; }

@keyframes hhCardFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.hh-float-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hh-float-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--hp-primary);
    line-height: 1;
}

.hh-float-label {
    font-size: 12px;
    color: var(--hp-text);
    font-weight: 600;
    margin-top: 2px;
}

/* ==========================================
   TRUST SECTION
   ========================================== */
.home-trust { background: #fff; }

.home-trust-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--hp-dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

.home-trust-heading span { color: var(--hp-primary); }

.home-trust-sub {
    color: var(--hp-text);
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 40px;
}

.home-trust-card {
    background: #fff;
    border: 1px solid rgba(16,16,16,.07);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.home-trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(6,68,152,.1);
    border-color: rgba(6,68,152,.2);
}

.home-trust-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
}

.home-trust-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--hp-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.home-trust-lbl {
    font-size: 13px;
    color: var(--hp-text);
    font-weight: 600;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.home-stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(16,16,16,.07);
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
    text-align: center;
    transition: all .35s;
    height: 100%;
}

.home-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(6,68,152,.1);
    border-color: rgba(6,68,152,.2);
}

.home-stat-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: all .35s;
}

.home-stat-card:hover .home-stat-icon {
    transform: scale(1.1) rotate(-5deg);
}

.home-stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--hp-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.home-stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hp-dark);
    margin-bottom: 10px;
}

.home-stat-desc {
    color: var(--hp-text);
    font-size: 13px;
    line-height: 22px;
    margin: 0;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.home-service-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px;
    border: 1px solid rgba(16,16,16,.08);
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
    transition: all .35s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.home-service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(241,110,94,.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s;
    z-index: 0;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(241,110,94,.12);
    border-color: rgba(241,110,94,.28);
}

.home-service-card:hover::before { opacity: 1; }

.home-service-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--hp-dark);
    margin-bottom: 10px;
    position: relative;
}

.home-service-card p {
    color: var(--hp-text);
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 14px;
    position: relative;
}

.home-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
    position: relative;
}

.home-service-tag {
    background: var(--hp-bg-gray);
    color: #555;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid rgba(16,16,16,.06);
    transition: all .25s;
}

.home-service-card:hover .home-service-tag {
    background: rgba(6,68,152,.08);
    color: var(--hp-primary);
    border-color: rgba(6,68,152,.15);
}

/* ==========================================
   MID CTA SECTION
   ========================================== */
.home-mid-cta {
    background: var(--hp-gradient);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-mid-cta::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
    top: -200px; left: -150px;
    pointer-events: none;
}

.home-mid-cta::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241,110,94,.4) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    pointer-events: none;
}

.home-mid-cta-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.home-mid-cta-heading span { color: #A6EF67; }

.home-mid-cta-sub {
    color: rgba(255,255,255,.8);
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-mid-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 48px;
}

.home-mid-cta-stats {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 20px 32px;
    backdrop-filter: blur(8px);
}

.home-mid-stat {
    text-align: center;
    padding: 0 24px;
}

.home-mid-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.home-mid-stat span {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.home-mid-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.2);
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.home-step-num {
    font-size: 11px;
    font-weight: 800;
    color: var(--hp-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.home-why-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(16,16,16,.07);
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
    transition: all .3s;
    height: 100%;
}

.home-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(6,68,152,.1);
    border-color: rgba(6,68,152,.2);
}

.home-why-icon {
    width: 50px; min-width: 50px; height: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    transition: all .3s;
    flex-shrink: 0;
}

.home-why-card:hover .home-why-icon {
    transform: scale(1.1);
}

.home-why-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-dark);
    margin-bottom: 6px;
}

.home-why-card p {
    color: var(--hp-text);
    font-size: 13px;
    line-height: 21px;
    margin: 0;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.home-faq-item {
    background: #fff;
    border: 1px solid rgba(16,16,16,.08);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .3s;
}

.home-faq-item:hover {
    box-shadow: 0 4px 20px rgba(6,68,152,.08);
}

.home-faq-btn {
    font-size: 16px;
    font-weight: 700;
    color: var(--hp-dark);
    padding: 22px 24px;
    background: #fff;
    border: none;
    box-shadow: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.home-faq-btn:not(.collapsed) {
    color: var(--hp-primary);
    background: #fff;
    box-shadow: none;
}

.home-faq-btn::after {
    background-image: none;
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 13px;
    color: var(--hp-primary);
    width: 32px; height: 32px;
    border-radius: 8px;
    background-color: rgba(6,68,152,.08);
    display: flex; align-items: center; justify-content: center;
    transition: all .3s;
    flex-shrink: 0;
}

.home-faq-btn:not(.collapsed)::after {
    content: '\f068';
    background-color: var(--hp-secondary);
    color: #fff;
    transform: none;
}

.home-faq-body {
    color: var(--hp-text);
    font-size: 15px;
    line-height: 26px;
    padding: 0 24px 22px;
}

/* ==========================================
   FINAL CTA + CONTACT SECTION
   ========================================== */
.home-final-cta h2 span { color: #A6EF67; }

.home-contact-info-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.home-contact-info-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.home-contact-info-card > p {
    color: rgba(255,255,255,.75);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px;
}

.home-contact-items { display: grid; gap: 14px; margin-bottom: 24px; }

.home-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 14px;
}

.home-contact-icon {
    width: 40px; min-width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.home-contact-item-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
}

.home-contact-item-val {
    font-size: 13px;
    color: rgba(255,255,255,.9);
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    display: block;
}

a.home-contact-item-val:hover { color: #A6EF67; }

.home-contact-social {
    display: flex;
    gap: 10px;
}

.home-contact-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all .3s;
    text-decoration: none;
}

.home-contact-social a:hover {
    background: var(--hp-secondary);
    border-color: var(--hp-secondary);
    transform: translateY(-2px);
}

/* Contact form card */
.home-contact-form-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 32px 30px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.home-contact-form-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.home-contact-form-header h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.home-contact-form-header p {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    margin: 0;
}

.home-contact-badge {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

/* ==========================================
   RESPONSIVE — HOMEPAGE
   ========================================== */
@media (max-width: 1199px) {
    .hh-heading { font-size: 2.4rem; }
    .home-mid-cta-heading { font-size: 2rem; }
    .hh-float-top-left    { top: 5%; left: -5%; }
    .hh-float-bottom-right{ bottom: 10%; right: -4%; }
}

@media (max-width: 991px) {
    .home-hero { padding: 120px 0 80px; }
    .hh-heading { font-size: 2rem; line-height: 1.2; }
    .hh-visual { min-height: 300px; margin-top: 40px; }
    .hh-float-card { display: none; }
    .home-section-heading { font-size: 1.8rem; }
    .home-mid-cta { padding: 60px 0; }
    .home-mid-cta-heading { font-size: 1.7rem; }
    .home-mid-cta-stats { padding: 16px 20px; }
    .home-mid-stat { padding: 0 14px; }
    .home-mid-stat strong { font-size: 1.4rem; }
    .home-stat-num { font-size: 2.4rem; }
    .home-contact-form-card,
    .home-contact-info-card { padding: 24px 20px; }
}

@media (max-width: 767px) {
    .home-hero { padding: 100px 0 60px; }
    .hh-heading { font-size: 1.7rem; letter-spacing: -.5px; }
    .hh-intro { font-size: 15px; }
    .hh-cta-row { flex-direction: column; }
    .hh-btn-primary, .hh-btn-outline { justify-content: center; }
    .hh-trust-row { gap: 8px; }
    .hh-trust-sep { display: none; }
    .home-section-heading { font-size: 1.5rem; }
    .home-mid-cta-stats { flex-direction: column; gap: 16px; }
    .home-mid-stat-sep { width: 60px; height: 1px; }
    .home-trust-heading { font-size: 1.4rem; }
    .home-contact-form-header { flex-direction: column; }
    .home-contact-badge { align-self: flex-start; }
}


/* ==========================================
   HOMEPAGE FINAL CTA — Inline form inputs
   Fields styled for gradient background
   ========================================== */

.hc-input {
    width: 100%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 10px;
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color .3s, background .3s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.hc-input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.hc-input:focus {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}

.hc-input.is-invalid {
    border-color: #ff6b6b;
}

.hc-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.hc-select option {
    background: #0c499c;
    color: #fff;
}

textarea.hc-input {
    resize: vertical;
    min-height: 110px;
}

/* reCAPTCHA dark theme fix inside gradient */
.sp-final-cta .g-recaptcha {
    transform-origin: left top;
}

@media (max-width: 767px) {
    .sp-final-cta .g-recaptcha {
        transform: scale(.88);
        transform-origin: left top;
    }
}


/* ==========================================
   HOMEPAGE CTA FORM — inside gradient
   Fully independent of form.css
   ========================================== */

/* Form wrapper card */
.home-cta-form-wrap {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#home-contact-form .home-cta-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

/* Field wrapper */
.home-cta-field {
    position: relative;
}

/* All inputs, selects, textarea */
.home-cta-input {
    display: block;
    width: 100%;
    height: 52px;
    padding: 0 18px;
    background: rgba(255, 255, 255, .1) !important;
    border: 1px solid rgba(255, 255, 255, .25) !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    transition: border-color .3s, background .3s;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none !important;
}

.home-cta-input::placeholder {
    color: rgba(255, 255, 255, .5) !important;
}

.home-cta-input:focus {
    background: rgba(255, 255, 255, .16) !important;
    border-color: rgba(255, 255, 255, .6) !important;
    color: #fff !important;
}

.home-cta-input.is-invalid {
    border-color: #ff6b6b !important;
}

/* Textarea override */
textarea.home-cta-input {
    height: auto !important;
    padding: 14px 18px !important;
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* Select arrow */
.home-cta-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.7)' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding-right: 42px !important;
}

.home-cta-select option {
    background: #0c499c;
    color: #fff;
}

/* Error text */
.home-cta-error {
    display: block;
    color: #ff8a80;
    font-size: 12px;
    margin-top: 5px;
    min-height: 16px;
}

#home-contact-form .home-cta-recaptcha-wrap {
    margin-top: 2px;
}

#home-contact-form .home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 4px;
}

/* Submit button hover */
#hcSubmitBtn:hover {
    background: #f16e5e !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(241, 110, 94, .4);
}

/* Outline button hover */
.home-cta-form-wrap a[href]:hover {
    background: rgba(255, 255, 255, .12) !important;
    border-color: rgba(255, 255, 255, .7) !important;
}

/* reCAPTCHA dark theme inside gradient */
.sp-final-cta .g-recaptcha {
    transform-origin: left top;
}

body.home-seo-agency .seo-footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.home-seo-agency .seo-footer .footer-widget-area {
    padding-top: 100px !important;
}

@media (max-width: 480px) {
    .sp-final-cta .g-recaptcha {
        transform: scale(.85);
        transform-origin: left top;
    }
    .home-cta-form-wrap {
        padding: 24px 18px;
    }
}

/* =========================================================
   services-page.css  —  Webexpert Infotech Services Page
   Design tokens inherited from common_style.css / style.css
   Primary    : #5951ed
   Secondary  : #A6EF67
   Heading    : #111111
   Text       : #696969
   Fonts      : Plus Jakarta Sans (headings), Manrope (body)
   ========================================================= */

/* ── Utility helpers ──────────────────────────────────── */
.sp-section {
  padding: 80px 0;
}

.sp-section-sm {
  padding: 60px 0;
}

.sp-section-lg {
  padding: 100px 0;
}

.sp-gray-bg {
  background-color: #F0F2F4;
}

.sp-dark-bg {
  background: linear-gradient(135deg, #0d0e1a 0%, #1a1c33 100%);
}

.sp-primary-bg {
  background-color: #5951ed;
}

/* ── Section Label / Sub-heading ─────────────────────── */
.sp-label {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    background: #f16e5e0d;
    color: #f16e5e;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ── Hero Section ────────────────────────────────────── */
.sp-hero {
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
     background: linear-gradient(90deg, #d65e52 0%, #043c88 100%);
}

.sp-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
     background: radial-gradient(circle, rgb(6 68 152 / 51%) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  pointer-events: none;
}

.sp-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
      background: radial-gradient(circle, rgb(255 255 255 / 16%) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.sp-hero .sp-label {
  background: rgba(255, 255, 255, .08);
  color: #fff;
      line-height: normal;
    text-align: center;
}

.sp-hero h1 {
  font-size: 54px;
  line-height: 64px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.sp-hero h1 span {
    color: #fff;
}

.sp-hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  line-height: 30px;
  max-width: 560px;
  margin-bottom: 36px;
}

.sp-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sp-hero-buttons .btn-primary-sp {
  background: #064498;
  color: #fff;
     padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: all .3s;
  cursor: pointer;
}

.sp-hero-buttons .btn-primary-sp:hover {
  background: #fff;
  color: #f16e5e;
}

.sp-hero-buttons .btn-outline-sp {
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, .4);
  transition: all .3s;
  cursor: pointer;
}

.sp-hero-buttons .btn-outline-sp:hover {
border-color: #ffffff;
    color: #ffffff;
}

/* Hero graphic */
.sp-hero-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-hero-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.sp-hero-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #5951ed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 28px;
  color: #fff;
}

.sp-hero-card h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.sp-hero-card p {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  line-height: 20px;
  margin: 0;
}

.sp-hero-stat-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.sp-hero-stat {
     background: rgb(255 255 255);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  flex: 1;
}

.sp-hero-stat h4 {
     color: #064498;
  font-size: 28px;
  margin-bottom: 4px;
}

.sp-hero-stat p {
    color: #333;
    font-size: 12px;
    margin: 0;
    line-height: normal;
}

/* ── Trusted-by / Client Logos ───────────────────────── */
.sp-clients {
  padding: 50px 0 40px;
  
}

.sp-clients-label {
  text-align: center;
  font-weight: 600;
  color: #696969;
  font-size: 15px;
  margin-bottom: 28px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Slider wrapper with edge-fade masks */
.sp-logo-slider-wrap {
  position: relative;
  overflow: hidden;
}

.sp-logo-slider-wrap::before,
.sp-logo-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.sp-logo-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.sp-logo-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.sp-logo-item {
  /*opacity: .45;*/
  filter: grayscale(1);
  transition: opacity .35s, filter .35s;
  font-weight: 800;
  font-size: 17px;
  color: #333;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  white-space: nowrap;
  display: inline-flex !important;
  align-items: center;
  cursor: default;
}

.sp-logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
  border-color: rgba(89, 81, 237, .2);
  color: #5951ed;
}

/* ── Services Card Grid ──────────────────────────────── */
.sp-service-card {
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px;
  border: 1px solid rgba(16, 16, 16, .08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
  transition: all .35s;
  height: 100%;
  position: relative;
  overflow: hidden;
      display: flex;
    flex-direction: column;
}

.sp-service-card::before {
     content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(241 110 94 / 7%) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s;
    z-index: -1;
}

.sp-service-card:hover {
transform: translateY(-6px);
    box-shadow: 0 20px 50px rgb(241 110 94 / 12%);
    border-color: rgb(241 110 94 / 28%);
}

.sp-service-card:hover::before {
  opacity: 1;
}

.sp-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(89, 81, 237, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #5951ed;
  transition: all .35s;
}

.sp-service-card:hover .sp-service-icon {
  background: #5951ed;
  color: #fff;
}

.sp-service-card h5 {
  font-size: 18px;
  color: #111;
  margin-bottom: 10px;
  line-height: 26px;
}

.sp-service-card p {
  color: #696969;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

.sp-service-card .sp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
     color: #f16e5e;
  transition: gap .25s;
      margin-top: auto;
}

.sp-service-card .sp-card-link:hover {
  gap: 10px;
}

/* ── Why Choose Us ───────────────────────────────────── */
.sp-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.sp-why-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(89, 81, 237, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #f16e5e;
      border: #e7e7e7 solid 1px;background: rgb(255 255 255);
}

.sp-why-item h6 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.sp-why-item p {
  color: #696969;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

.sp-why-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.sp-why-image-wrap img {
  width: 100%;
  display: block;
}

.sp-why-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sp-why-badge .badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #064498;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.sp-why-badge h6 {
  font-size: 15px;
  margin-bottom: 2px;
  color: #111;
}

.sp-why-badge p {
  font-size: 12px;
  color: #696969;
  margin: 0;
}

/* ── Process / Stepper ───────────────────────────────── */
.sp-process-wrap {
  position: relative;
}

.sp-process-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 16, 16, .07);
  margin-bottom: 20px;
  transition: all .3s;
  position: relative;
}

.sp-process-item:hover {
  border-color: rgba(89, 81, 237, .3);
  box-shadow: 0 8px 30px rgba(89, 81, 237, .08);
}

.sp-process-num {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0b4c84;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-process-item.alt-step .sp-process-num {
    background: #f16e5e;
    color: #ffffff;
}

.sp-process-item h5 {
  font-size: 18px;
  color: #111;
  margin-bottom: 6px;
}

.sp-process-item p {
  color: #696969;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

/* Process connector */
.sp-process-item::after {
  content: '';
  position: absolute;
  left: 53px;
  bottom: -20px;
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, rgba(89, 81, 237, .4), transparent);
}

.sp-process-item:last-child::after {
  display: none;
}

/* Horizontal stepper (desktop) */
.sp-stepper {
  display: flex;
  gap: 0;
  position: relative;
}

.sp-stepper::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
     background: linear-gradient(90deg, #064498, #f16e5e);
}

.sp-step-item {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.sp-step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #064498;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all .35s;
}

.sp-step-item:hover .sp-step-circle {
  background: #f16e5e;
  color: #fff;
}

.sp-step-item h6 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  line-height: 20px;
}

.sp-step-item p {
  font-size: 13px;
  color: #696969;
  line-height: 20px;
}

/* ── Consultation CTA Band ───────────────────────────── */
.sp-cta-band {
  background: linear-gradient(135deg, #5951ed 0%, #3730cc 100%);
  border-radius: 24px;
  padding: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-cta-band::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(166, 239, 103, .15);
  top: -100px;
  right: -100px;
}

.sp-cta-band h2 {
  color: #fff;
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 16px;
}

.sp-cta-band p {
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
  margin-bottom: 32px;
}

.sp-cta-band .btn-cta-white {
  background: #A6EF67;
  color: #111;
  padding: 16px 38px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  display: inline-block;
}

.sp-cta-band .btn-cta-white:hover {
  background: #fff;
  color: #5951ed;
  transform: translateY(-2px);
}

/* ── Industries ──────────────────────────────────────── */
.sp-industry-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(16, 16, 16, .07);
  transition: all .35s;
  height: 100%;
}

.sp-industry-card:hover {
  transform: translateY(-5px);
    box-shadow: 0 20px 50px rgb(241 110 94 / 12%);
    border-color: rgb(241 110 94 / 28%);
}

.sp-industry-card .ind-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  transition: all .35s;
}

.sp-industry-card h6 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 22px;
}

.sp-industry-card:hover .ind-icon {
    background: #f16e5e !important;
    color: #fff !important;
}

/* ── Benefits ────────────────────────────────────────── */
.sp-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(16, 16, 16, .07);
  transition: all .3s;
}
.sp-benefit-item {
  height: 100%;
  align-items: flex-start; /* better alignment for text */
}
.sp-benefit-item:hover {
    border-color: rgb(6 68 152 / 25%);
    box-shadow: 0 8px 24px rgb(6 68 152 / 15%);
}

.sp-benefit-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(89, 81, 237, .1);
  color: #5951ed;
}

.sp-benefit-item h6 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 9px;
}

.sp-benefit-item p {
  font-size: 13px;
  color: #696969;
  margin: 0;
  line-height: 19px;
}

/* ── Case Studies ────────────────────────────────────── */
.sp-case-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, .07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
  transition: all .35s;
  height: 100%;
}

.sp-case-card:hover {
  transform: translateY(-6px);
    box-shadow: 0 20px 50px rgb(6 68 152 / 13%);
}

.sp-case-header {
  padding: 24px 28px 20px;
  background: linear-gradient(135deg, #256ed1, #064498);
  color: #fff;
}

.sp-case-header .case-tag {
    display: inline-block;
    background: rgb(255 255 255 / 7%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 0px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sp-case-header h5 {
  color: #fff;
  font-size: 17px;
  line-height: 24px;
}

.sp-case-body {
  padding: 24px 28px;
}

.sp-case-kv {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.sp-case-kv strong {
  min-width: 80px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.sp-case-kv span {
  font-size: 13px;
  color: #696969;
  line-height: 20px;
}

.sp-case-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f0f2f4;
}

.sp-case-metric {
  text-align: center;
  flex: 1;
}

.sp-case-metric h4 {
  color: #f16e5e;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 2px;
}

.sp-case-metric p {
  color: #696969;
  font-size: 12px;
  margin: 0;
}

/* ── Testimonials ────────────────────────────────────── */
.sp-testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px;
  border: 1px solid rgba(16, 16, 16, .07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
  height: 100%;
  transition: all .35s;
}

.sp-testi-card:hover {
    border-color: rgb(6 68 152 / 15%);
    box-shadow: 0 12px 36px rgb(6 68 152 / 9%);
}

.sp-testi-stars {
  color: #FCA326;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.sp-testi-card p.testi-text {
  color: #444;
  font-size: 15px;
  line-height: 26px;
  font-style: italic;
  margin-bottom: 22px;
}

.sp-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
      background: linear-gradient(90deg, #e66c60 0%, #064498 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.sp-testi-author h6 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.sp-testi-author span {
  font-size: 12px;
  color: #696969;
}

/* ── Blog Cards ──────────────────────────────────────── */
.sp-blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, .07);
  transition: all .35s;
  height: 100%;
}

.sp-blog-card:hover {
  transform: translateY(-5px);
    box-shadow: 0 16px 40px rgb(6 68 152 / 4%);
}

.sp-blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #5951ed, #A6EF67);
  /* fallback */
}

.sp-blog-body {
  padding: 24px 22px;
}

.sp-blog-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #696969;
}

.sp-blog-meta .meta-cat {
 color: #f16e5e;
  font-weight: 700;
}

.sp-blog-body h5 {
  font-size: 17px;
  line-height: 24px;
  color: #111;
  margin-bottom: 10px;
  font-weight: 700;
}

.sp-blog-body p {
  color: #696969;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 16px;
}

.sp-blog-read {
  font-size: 14px;
  font-weight: 700;
  color: #5951ed;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s;
}

.sp-blog-read:hover {
  gap: 10px;
  color: #5951ed;
}

/* ── FAQ Accordion ───────────────────────────────────── */
.sp-faq-item {
  border: 1px solid rgba(16, 16, 16, .08);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .3s;
}

.sp-faq-item:hover {
  box-shadow: 0 4px 20px rgba(89, 81, 237, .08);
}

.sp-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  gap: 16px;
}

.sp-faq-question .faq-arrow {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(89, 81, 237, .08);
  display: flex;
  align-items: center;
  justify-content: center;
     color: #064498;
  transition: all .3s;
  font-size: 14px;
}
.sp-blog-card .sp-blog-body .sp-blog-read{
           color: #f16e5e;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.sp-faq-item.active .sp-faq-question .faq-arrow {
    background: #f16e5e;
  color: #fff;
  transform: rotate(45deg);
}

.sp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}

.sp-faq-item.active .sp-faq-answer {
  max-height: 400px;
}

.sp-faq-answer-inner {
  padding: 0 24px 22px;
  color: #696969;
  font-size: 15px;
  line-height: 26px;
}

/* ── Final CTA Section ───────────────────────────────── */
.sp-final-cta {
  background:linear-gradient(90deg, #d65e52 0%, #043c88 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-final-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
background: radial-gradient(circle, rgb(255 255 255 / 13%) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.sp-final-cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
     background: radial-gradient(circle, rgb(241 110 94 / 50%) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.sp-final-cta h2 {
  /* font-size: 44px; */
  line-height: 56px;
  color: #fff;
  margin-bottom: 16px;
}

.sp-final-cta h2 span {
    color: #f16e5e;
}

.sp-final-cta p {
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  margin-bottom: 40px;
}

.sp-final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.sp-section-sm .btn-primary-sp{
    padding: 16px 32px;
    border-radius: 10px;
    background: #d46964;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.sp-section-sm .btn-primary-sp:hover{
        background: #fff;
    color: #d46964;
}


.sp-final-cta .btn-primary-sp {
    background: #ffffff;
    color: #064498;
    border-color: transparent;
}


.sp-final-cta .btn-primary-sp:hover {
  background: #fff;
     color: #f16e5e;
}
.sp-final-cta .btn-white-sp,
.sp-final-cta .btn-outline-sp {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.sp-final-cta .btn-white-sp:hover,
.sp-final-cta .btn-outline-sp:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.8);
  color: #fff;
}

/* ── Breadcrumb banner ───────────────────────────────── */
.sp-page-banner {
  background: linear-gradient(135deg, #5951ed, #3730cc);
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}

.sp-page-banner::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(166, 239, 103, .15);
  top: -200px;
  right: -100px;
}

.sp-page-banner h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 16px;
}

.sp-page-banner .sp-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.sp-page-banner .sp-breadcrumb a {
  color: #A6EF67;
}

.sp-page-banner .sp-breadcrumb span {
  color: rgba(255, 255, 255, .5);
}

/* ── Outline / Border buttons ────────────────────────── */
.btn-outline-primary-sp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
    border: 2px solid #064498;
    color: #064498;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
  background: transparent;
  cursor: pointer;
}

.btn-outline-primary-sp:hover {
    background: #ffffff;
    color: #064498;
}

.btn-white-sp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.btn-white-sp:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}


/* ── Summary stats bar ───────────────────────────────── */
.sp-stats-bar {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.sp-stat-col {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px;
  border-right: 1px solid #f0f2f4;
}

.sp-stat-col:last-child {
  border-right: none;
}

.sp-stat-col h3 {
  color: #5951ed;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 6px;
}

.sp-stat-col p {
  color: #696969;
  font-size: 14px;
  margin: 0;
}

.cta-gradietn {
    background: linear-gradient(90deg, #0f50a8 0%, #003377 100%);
    padding: 40px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* ── Responsive Breakpoints ──────────────────────────── */
@media (max-width: 991px) {
    .sp-process-num { width: 42px; min-width: 42px; height: 42px; font-size: 15px; }
    .sp-process-item { padding: 1rem; }
    .sp-industry-card { padding: 1rem; border-radius: 12px; }
    .sp-section h2 { font-size: 24px; line-height: normal !important; }
    .cta-gradietn { padding: 40px 20px; }
    .sp-final-cta { padding: 50px 0; }
    .sp-faq-question { padding: 16px 20px; }
    .sp-hero-card-icon { width: 45px; height: 45px; font-size: 14px; border-radius: 10px; }
    .sp-hero { padding: 120px 0 70px; }
    .sp-hero h1 { font-size: 38px; line-height: 50px; }
    .sp-stepper { flex-direction: column; gap: 24px; }
    .sp-stepper::before { display: none; }
    .sp-step-item { text-align: left; display: flex; align-items: flex-start; gap: 18px; }
    .sp-step-circle { margin: 0; flex-shrink: 0; }
    .sp-cta-band { padding: 50px 30px; }
    .sp-cta-band h2 { font-size: 28px; line-height: 38px; }
    .sp-final-cta h2 { font-size: 30px; line-height: 40px; }
    .sp-stats-bar { gap: 20px; }
    .sp-stat-col { border-right: none; }
    .sp-process-item::after { left: 36px; }
    .btn-outline-primary-sp { margin-top: 1rem; }
}

@media (max-width: 767px) {
    .sp-hero-card { padding: 16px; }
    .sp-hero h1 { font-size: 30px; line-height: 42px; }
    .sp-hero-stat-row { flex-direction: column; gap: 12px; }
    .sp-logo-grid { gap: 20px 28px; }
    .sp-section, .sp-section-sm, .sp-section-lg { padding: 55px 0; }
    .sp-page-banner { padding: 90px 0 50px; }
    .sp-page-banner h1 { font-size: 30px; }
}

/* =========================================================
   Industry Pages Framework (Reusable)
   ========================================================= */

.industry-page {
    --ind-primary: #064498;
    --ind-secondary: #f16e5e;
    --ind-accent: #1abc9c;
}

.healthcare-theme {
    --ind-primary: #064498;
    --ind-secondary: #f16e5e;
}

.industry-page .scroll-down,
.industry-page .mouse-scroll,
.industry-page .scroll-indicator,
.industry-page .mouse-wrapper,
.industry-page .scroll-btn {
    display: none !important;
}

.industry-page .sp-section .sp-label {
    background: #f16e5e0d;
    color: #f16e5e;
    border: none;
}

.industry-page .sp-service-icon {
    background: rgba(6, 68, 152, 0.1);
    color: var(--ind-primary);
}

.industry-page .sp-step-circle {
    background: var(--ind-primary);
}

.industry-page .sp-why-icon,
.industry-page .sp-benefit-icon {
    background: rgba(6, 68, 152, 0.1);
    color: var(--ind-primary);
}

.sp-final-cta {
    margin-bottom: 0 !important;
}

/* ── Attractive Tech Section ── */
.tech-arsenal-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.tech-arsenal-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.tech-card-head { padding: 30px 20px; text-align: center; color: #fff; }
.tech-icon {
    width: 60px; height: 60px; background: rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 24px;
}
.tech-card-head h6 { font-size: 18px; font-weight: 800; margin: 0; letter-spacing: 0.5px; }
.tech-card-body { padding: 25px 20px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tech-pill {
    padding: 6px 14px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 50px;
    font-size: 13px; font-weight: 700; color: #475569; transition: all 0.2s ease;
}
.tech-pill:hover { background: #fff; border-color: #064498; color: #064498; }


/* =========================================================
   Slick Slider Overrides — Logo Ticker & Testimonials
   ========================================================= */

/* ── Logo ticker ─────────────────────────────────────── */
.sp-logo-slider .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 24px;
}

.sp-logo-slider .slick-track {
    display: flex !important;
    align-items: center;
}

/* ── Testimonials slider ─────────────────────────────── */
.sp-testi-slider .slick-slide {
    padding: 0 12px;
    height: auto;
}

.sp-testi-slider .slick-slide > div {
    height: 100%;
}

.sp-testi-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.sp-testi-slider .slick-dots {
    bottom: -40px;
}

.sp-testi-slider .slick-dots li button:before {
    font-size: 10px;
    color: #5951ed;
}

.sp-testi-slider .slick-dots li.slick-active button:before {
    color: #5951ed;
    opacity: 1;
}

.sp-testi-slider .slick-prev,
.sp-testi-slider .slick-next {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    z-index: 2;
}

.sp-testi-slider .slick-prev {
    left: -22px;
}

.sp-testi-slider .slick-next {
    right: -22px;
}

.sp-testi-slider .slick-prev:before,
.sp-testi-slider .slick-next:before {
    color: #5951ed;
    font-size: 18px;
}

.sp-testi-slider .slick-prev:hover,
.sp-testi-slider .slick-next:hover {
    background: #5951ed;
}

.sp-testi-slider .slick-prev:hover:before,
.sp-testi-slider .slick-next:hover:before {
    color: #fff;
}


/* =========================================================
   Shared inline styles — service & industry pages
   (previously duplicated as <style> blocks in every view)
   ========================================================= */

/* ── Slick testimonials slider (tighter variant) ─────── */
.sp-testi-slider .slick-slide {
    padding: 0 10px;
    height: inherit;
}

.sp-testi-slider .slick-list {
    margin: 0 -10px;
}

.sp-testi-slider .slick-dots {
    margin-top: 40px;
    position: relative;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.slick-dots li button {
    padding: 2px 8px;
    background: #0644982e;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.slick-dots li.slick-active button {
    background: #f16e5e;
}

.sp-testi-slider .slick-dots li button:before {
    font-size: 10px;
    color: #5951ed;
    opacity: 0.2;
}

.sp-testi-slider .slick-dots li.slick-active button:before {
    color: #5951ed;
    opacity: 1;
}

/* ── Footer gap fix ──────────────────────────────────── */
body {
    background-color: #0c1c18;
}

.seo-footer {
    margin-top: -1px !important;
    border-top: none !important;
    position: relative;
    z-index: 2;
    background-color: #0c1c18 !important;
}

.sp-final-cta {
    margin-bottom: 0 !important;
    position: relative;
    z-index: 1;
}

.footer-widget-area {
    padding-top: 100px !important;
}

/* ── Section spacing overrides ───────────────────────── */
section.sp-section,
section.sp-section-sm,
section.sp-section-lg,
section.sp-clients {
    background-color: #fff;
    margin: 0 !important;
    padding: 90px 0;
    border: 0;
}

section.sp-section.sp-gray-bg {
    background-color: #F0F2F4 !important;
}

section.sp-clients {
    padding: 60px 0;
}

section.sp-hero,
section.sp-dark-bg {
    background-color: transparent !important;
}

@media (max-width: 991px) {
    section.sp-section,
    section.sp-section-sm,
    section.sp-section-lg,
    section.sp-clients {
        padding: 40px 0;
    }
}

/* ── Highlight card float animation ─────────────────── */
.sp-highlight-card {
    animation: spFloat 4s ease-in-out infinite;
    border: 0;
}

@keyframes spFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.highlight-icon {
    animation: spIconPulse 2s infinite;
}

@keyframes spIconPulse {
    0%   { box-shadow: 0 0 0 0 rgb(255 255 255 / 40%); }
    70%  { box-shadow: 0 0 0 15px rgba(166, 239, 103, 0); }
    100% { box-shadow: 0 0 0 0 rgba(166, 239, 103, 0); }
}

.pulse-arrow {
    animation: arrowLeftRight 1.5s infinite;
}

@keyframes arrowLeftRight {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(5px); }
}

/* =========================================================
   Industry pages — Tech tabs (glassmorphism)
   (previously duplicated as <style> blocks in every industry view)
   ========================================================= */

/* ── Industry footer gap fix variant ────────────────── */
.seo-footer {
    margin-top: -36px !important;
    padding-top: 0 !important;
}

.sp-final-cta {
    position: relative;
    z-index: 5;
}

.footer-widget-area {
    padding-top: 70px !important;
}

/* ── Vertical tabs wrapper ───────────────────────────── */
.sp-tech-v-tabs-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    padding: 30px;
    height: 100%;
}

.sp-tech-v-tabs-nav {
    gap: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sp-tech-v-tabs-nav .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    color: #555;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.sp-tech-v-tabs-nav .nav-link i {
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.sp-tech-v-tabs-nav .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 68, 152, 0.1);
}

.sp-tech-v-tabs-nav .nav-link.active {
    background: linear-gradient(135deg, #064498, #1a5cad);
    color: #fff;
    box-shadow: 0 10px 20px rgba(6, 68, 152, 0.2);
}

.sp-tech-v-tabs-nav .nav-link.active i {
    opacity: 1;
    transform: translateX(0);
}

/* ── Tech item card ──────────────────────────────────── */
.sp-tech-item-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sp-tech-item-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 68, 152, 0.05), rgba(241, 110, 94, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.sp-tech-item-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.sp-tech-item-card:hover::before {
    opacity: 1;
}

.sp-tech-item-card i {
    font-size: 38px;
    margin-bottom: 18px;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.sp-tech-item-card:hover i {
    transform: scale(1.1);
}

.sp-tech-item-card h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    position: relative;
    z-index: 2;
}
