:root {
  --primary: #0f766e;
  --primary2: #14b8a6;
  --secondary: #0b1f3a;
  --accent: #38bdf8;
  --text: #102033;
  --muted: #64748b;
  --light: #f8fafc;
  --line: #e2e8f0;
  --white: #fff;
  --shadow: 0 18px 45px rgba(11, 31, 58, .12);
  --soft: 0 10px 28px rgba(11, 31, 58, .08);
  --radius: 22px
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: #fff;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1180px, 92%);
  margin: auto
}

.section {
  padding: 90px 0
}

.section-sm {
  padding: 60px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 118, 110, .08);
  border: 1px solid rgba(15, 118, 110, .18);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase
}

.eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary)
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
  line-height: 1.08;
  color: var(--secondary);
  letter-spacing: -.035em
}

h1 {
  font-size: clamp(42px, 6vw, 50px)
}

h2 {
  font-size: clamp(32px, 4vw, 38px)
}

h3 {
  font-size: clamp(21px, 2vw, 28px)
}

p {
  color: var(--muted);
  font-size: 17px
}

/* .lead {
  font-size: 20px;
  line-height: 1.75
} */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: .25s
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  box-shadow: 0 14px 26px rgba(15, 118, 110, .28)
}

.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-2px)
}

.btn-secondary {
  background: var(--secondary);
  color: #fff
}

.btn-outline {
  border-color: rgba(15, 118, 110, .25);
  background: #fff;
  color: var(--primary)
}

.grid {
  display: grid;
  gap: 24px
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr)
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr)
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, .75)
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  color: var(--secondary)
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 950
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
  color: #334155
}

.nav-links a {
  position: relative
}

.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  height: 3px;
  width: 0;
  background: var(--primary);
  border-radius: 4px;
  transition: .25s
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--light);
  border-radius: 12px;
  padding: 10px
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  margin: 5px 0
}

.hero {
  background: radial-gradient(circle at 80% 20%, rgba(56, 189, 248, .2), transparent 32%), linear-gradient(180deg, #f8fafc, #fff);
  overflow: hidden
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 44px;
  padding: 72px 0 86px
}

.hero-copy h1 {
  margin: 18px 0
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}

.hero-card,
.image-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 14px;
  box-shadow: var(--shadow);
  overflow: hidden
}

.hero-card img,
.image-panel img {
  border-radius: 24px;
  width: 100%
}

.floating {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--soft);
  display: flex;
  gap: 12px;
  align-items: center
}

.hero-visual {
  position: relative
}

.float-1 {
  top: 8%;
  left: -24px
}

.float-2 {
  right: -18px;
  bottom: 13%
}

.pulse {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(20, 184, 166, .13);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 950
}

.floating strong {
  display: block;
  font-size: 21px;
  color: var(--secondary)
}

.floating small {
  font-weight: 800;
  color: var(--muted)
}

.stats-band {
  margin-top: -34px;
  position: relative;
  z-index: 5
}

.stats-inner {
  background: var(--secondary);
  border-radius: 28px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  box-shadow: var(--shadow)
}

.stat {
  padding: 10px 12px;
  border-left: 1px solid rgba(255, 255, 255, .14)
}

.stat:first-child {
  border-left: 0
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 27px
}

.stat span {
  color: #bfd1e4;
  font-size: 14px;
  font-weight: 700
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px
}

.section-head h2 {
  margin-top: 14px
}

.section-head .copy {
  max-width: 720px
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--soft);
  transition: .25s
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 118, 110, .12), rgba(56, 189, 248, .12));
  display: grid;
  place-items: center;
  margin-bottom: 20px
}

.icon img {
  width: 30px;
  height: 30px
}

.feature-list {
  display: grid;
  gap: 13px;
  margin-top: 18px
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
  font-weight: 700
}

.check:before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 23px;
  height: 23px;
  border-radius: 50%;
  background: rgba(15, 118, 110, .12);
  color: var(--primary);
  font-size: 13px
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: center
}

.process {
  counter-reset: step
}

.process-card {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--soft)
}

.process-card:before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--secondary);
  color: #fff;
  font-weight: 950;
  margin-bottom: 18px
}

.dark-section {
  background: var(--secondary);
  color: #fff;
  overflow: hidden
}

.dark-section h2,
.dark-section h3 {
  color: #fff
}

.dark-section p {
  color: #cbd5e1
}

.dark-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 28px
}

.cta {
  background: linear-gradient(135deg, var(--primary), #0b1f3a);
  border-radius: 34px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow)
}

.cta h2 {
  color: #fff
}

.cta p {
  color: #dbeafe;
  max-width: 720px
}

.page-hero {
  background: radial-gradient(circle at 85% 0, rgba(56, 189, 248, .2), transparent 30%), linear-gradient(180deg, #f8fafc, #fff);
  padding: 72px 0 48px
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr .6fr;
  align-items: center;
  gap: 32px
}

.breadcrumb {
  color: var(--primary);
  font-weight: 850;
  margin-bottom: 14px
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px
}

.badge {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(15, 118, 110, .09);
  color: var(--primary);
  font-weight: 850;
  font-size: 14px
}

.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px
}

.job {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center
}

.job-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-weight: 850;
  color: #334155;
  font-size: 14px
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  font: inherit;
  outline: none
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .11)
}

textarea {
  min-height: 135px;
  resize: vertical
}

.contact-info {
  display: grid;
  gap: 16px
}

.info-item {
  display: flex;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--soft)
}

.faq {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-item:last-child {
  border-bottom: 0
}

.faq-q {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  border: 0;
  background: #fff;
  font-weight: 900;
  color: var(--secondary);
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  cursor: pointer
}

.faq-a {
  display: none;
  padding: 0 24px 22px
}

.faq-item.open .faq-a {
  display: block
}

.testimonial-card {
  position: relative
}

.quote-mark {
  font-size: 58px;
  line-height: 1;
  color: rgba(15, 118, 110, .18);
  font-weight: 950
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 8px 0 14px
}

.client {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 950
}

.client strong {
  display: block;
  color: var(--secondary)
}

.client span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700
}

.testimonial-carousel {
  position: relative;
  overflow: hidden
}

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 18px;
  scrollbar-width: thin
}

.testimonial-track .testimonial-card {
  min-width: calc(50% - 12px);
  scroll-snap-align: start
}

.carousel-controls {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--soft)
}

.carousel-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px
}

.footer {
  background: #07182c;
  color: #fff;
  padding: 64px 0 24px
}

.footer h4 {
  color: #fff;
  margin-bottom: 18px
}

.footer p,
.footer a,
.footer span {
  color: #b8c7d9
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 32px
}

.footer-links {
  display: grid;
  gap: 10px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 38px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #00ae40;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .34)
}

.whatsapp img {
  width: 33px;
  height: 33px
}

.call-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  color: var(--secondary);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  margin-top: 18px
}

.map-placeholder {
  min-height: 300px;
  border-radius: 26px;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  border: 1px dashed #94a3b8;
  display: grid;
  place-items: center;
  text-align: center;
  color: #64748b;
  font-weight: 900
}

.pill-menu {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px
}

.pill-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
  color: #334155
}

@media(max-width:980px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow)
  }

  .nav-links.show {
    display: flex
  }

  .menu-toggle {
    display: block
  }

  .nav .btn {
    display: none
  }

  .hero-wrap,
  .split,
  .page-hero .container {
    grid-template-columns: 1fr
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .section-head {
    display: block
  }

  .section-head .btn {
    margin-top: 20px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta {
    display: block
  }

  .cta .btn {
    margin-top: 24px
  }

  .floating {
    position: static;
    margin-top: 12px
  }

  .testimonial-track .testimonial-card {
    min-width: calc(50% - 12px)
  }
}

@media(max-width:620px) {
  .section {
    padding: 64px 0
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats-inner,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr
  }

  .stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .12)
  }

  .stat:first-child {
    border-top: 0
  }

  .hero-actions {
    display: grid
  }

  .hero-actions .btn {
    width: 100%
  }

  .cta {
    padding: 34px 24px;
    border-radius: 26px
  }

  .job {
    display: block
  }

  .service-detail {
    grid-template-columns: 1fr
  }

  .testimonial-track .testimonial-card {
    min-width: 100%
  }

  .carousel-controls {
    justify-content: flex-start
  }
}

/* About page BPO statistics section */
.about-bpo-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: linear-gradient(90deg, rgba(14, 20, 28, .96), rgba(14, 20, 28, .86)), url('../images/about-rcm-team.svg') center/cover no-repeat;
  color: #fff
}

.about-bpo-section:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 38%, rgba(20, 184, 166, .2), transparent 32%);
  pointer-events: none
}

.about-bpo-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.35fr;
  gap: 36px;
  align-items: center
}

.about-bpo-content h2 {
  color: #fff;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.15;
  max-width: 560px;
  margin-top: 34px
}

.about-bpo-content p {
  color: #d8e4ee;
  margin-top: 18px;
  max-width: 560px
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #74d4c9;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em
}

.mini-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 950
}

.about-bpo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.bpo-stat-card {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 28px 18px;
  backdrop-filter: blur(4px);
  overflow: hidden
}

.bpo-stat-icon {
  font-size: 62px;
  line-height: 1;
  filter: grayscale(1) brightness(5);
  margin-bottom: 26px
}

.bpo-stat-line {
  display: block;
  width: 110px;
  height: 3px;
  background: #04c3ff;
  margin-bottom: 24px
}

.bpo-stat-card strong {
  display: block;
  color: #fff;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: .02em;
  max-width: 100%;
  overflow-wrap: anywhere
}

.bpo-stat-card small {
  display: block;
  color: #fff;
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 14px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .45)
}

/* Improved responsive buttons */
.btn,
.pill-menu a,
.carousel-btn,
button,
input[type="submit"] {
  max-width: 100%;
  white-space: normal;
  text-align: center
}

.btn {
  min-height: 50px;
  line-height: 1.25
}

.card .btn,
.job .btn,
.cta .btn,
.form-wrap .btn {
  flex-shrink: 0
}

.hero-actions,
.pill-menu {
  align-items: stretch
}

.form-wrap button.btn {
  width: fit-content
}

.carousel-controls .carousel-btn {
  white-space: nowrap;
  min-height: auto;
  line-height: 1
}

@media(max-width:980px) {
  .about-bpo-wrap {
    grid-template-columns: 1fr
  }

  .about-bpo-content h2 {
    max-width: 820px
  }

  .about-bpo-stats {
    grid-template-columns: repeat(3, 1fr)
  }

  .bpo-stat-card {
    min-height: 270px
  }

  .nav-links .btn {
    width: 100%
  }

  .cta .btn {
    display: flex;
    width: max-content;
    max-width: 100%
  }
}

@media(max-width:760px) {
  .about-bpo-section {
    padding: 68px 0
  }

  .about-bpo-stats {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .bpo-stat-card {
    min-height: 230px
  }

  .about-bpo-content h2 {
    font-size: clamp(34px, 10vw, 48px)
  }

  .bpo-stat-icon {
    font-size: 52px
  }

  .bpo-stat-card strong {
    font-size: clamp(42px, 13vw, 64px)
  }
}

@media(max-width:620px) {

  .btn,
  .cta .btn,
  .card .btn,
  .job .btn,
  .form-wrap .btn,
  .pill-menu a {
    width: 100%;
    display: flex
  }

  .pill-menu {
    display: grid;
    grid-template-columns: 1fr
  }

  .section-head .btn {
    width: 100%;
    margin-top: 18px
  }

  .job .btn {
    margin-top: 18px
  }

  .form-wrap button.btn {
    width: 100%
  }

  .carousel-controls {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .carousel-controls .carousel-btn {
    width: 100%;
    border-radius: 999px
  }

  .call-strip {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center
  }

  .nav {
    gap: 10px
  }

  .logo {
    min-width: 0
  }

  .logo span {
    overflow: hidden;
    text-overflow: ellipsis
  }

  .logo-mark {
    flex: 0 0 44px
  }
}

/* Cleaner, shorter About Us BPO section redesign */
.compact-bpo {
  padding: 54px 0 !important;
  min-height: auto !important;
  background:
    linear-gradient(90deg, rgba(7, 24, 44, .96), rgba(15, 118, 110, .72)),
    url('../images/about-rcm-team.svg') center/cover no-repeat !important;
}

.compact-bpo:after {
  display: none !important
}

.compact-bpo-wrap {
  grid-template-columns: 1fr 1.15fr !important;
  gap: 32px !important;
}

.compact-bpo-content h2 {
  margin-top: 18px !important;
  font-size: clamp(30px, 3.6vw, 46px) !important;
  line-height: 1.15 !important;
  max-width: 620px !important;
}

.compact-bpo-content p {
  margin-top: 14px !important;
  max-width: 560px !important;
  color: #dbeafe !important;
  font-size: 16px !important;
}

.compact-bpo-stats {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}

.compact-stat-card {
  min-height: 176px !important;
  border-radius: 20px !important;
  padding: 22px 16px !important;
  background: rgba(255, 255, 255, .10) !important;
  border: 1px solid rgba(255, 255, 255, .20) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .15) !important;
}

.clean-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 16px !important;
  display: grid !important;
  place-items: center !important;
  margin-bottom: 14px !important;
  background: rgba(20, 184, 166, .20) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  font-size: 24px !important;
  line-height: 1 !important;
  filter: none !important;
  font-weight: 950 !important;
}

.compact-stat-card:before {
  content: "";
  width: 56px;
  height: 3px;
  border-radius: 99px;
  background: #38bdf8;
  order: 2;
  margin: 10px 0 12px;
}

.compact-stat-card .bpo-stat-line {
  display: none !important
}

.compact-stat-card strong {
  order: 3;
  font-size: clamp(32px, 3.7vw, 52px) !important;
  letter-spacing: -.04em !important;
}

.compact-stat-card small {
  order: 4;
  font-size: 14px !important;
  margin-top: 8px !important;
  letter-spacing: .02em !important;
}

@media(max-width:980px) {
  .compact-bpo {
    padding: 48px 0 !important
  }

  .compact-bpo-wrap {
    grid-template-columns: 1fr !important
  }

  .compact-bpo-stats {
    grid-template-columns: repeat(3, 1fr) !important
  }

  .compact-stat-card {
    min-height: 160px !important
  }
}

@media(max-width:760px) {
  .compact-bpo {
    padding: 42px 0 !important
  }

  .compact-bpo-stats {
    grid-template-columns: 1fr !important;
    gap: 12px !important
  }

  .compact-stat-card {
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: 52px 1fr;
    grid-template-areas: "icon number" "icon label" !important;
    align-items: center !important;
    text-align: left !important;
    column-gap: 14px !important;
    padding: 18px !important
  }

  .compact-stat-card:before {
    display: none !important
  }

  .compact-stat-card .clean-icon {
    grid-area: icon !important;
    margin: 0 !important
  }

  .compact-stat-card strong {
    grid-area: number !important;
    font-size: 34px !important
  }

  .compact-stat-card small {
    grid-area: label !important;
    margin: 0 !important;
    font-size: 13px !important
  }

  .compact-bpo-content h2 {
    font-size: clamp(28px, 8vw, 38px) !important
  }
}


/* Compliance detailed content section */
.compliance-detail-section {
  padding: 72px 0;
  background: #fff
}

.compliance-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: start
}

.compliance-article {
  max-width: 780px
}

.compliance-article .eyebrow {
  margin-bottom: 14px
}

.compliance-article h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 18px
}

.compliance-article h3 {
  font-size: clamp(24px, 2.3vw, 34px);
  margin: 34px 0 14px
}

.compliance-article p {
  font-size: 16px;
  line-height: 1.85;
  color: #334155;
  margin-bottom: 18px
}

.hipaa-card {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hipaa-card img {
  width: 100%;
  border-radius: 18px
}

.compliance-intro-note {
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  background: rgba(15, 118, 110, .06);
  border-radius: 16px;
  margin: 22px 0 26px
}

.compliance-intro-note p {
  margin: 0;
  color: #334155;
  font-weight: 650
}

.compliance-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px
}

.compliance-mini {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--light)
}

.compliance-mini strong {
  display: block;
  color: var(--secondary);
  font-size: 18px;
  margin-bottom: 6px
}

.compliance-mini span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  display: block
}

@media(max-width:980px) {
  .compliance-detail-layout {
    grid-template-columns: 1fr
  }

  .hipaa-card {
    position: relative;
    top: auto;
    max-width: 460px;
    margin: 0 auto
  }

  .compliance-mini-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:620px) {
  .compliance-detail-section {
    padding: 56px 0
  }

  .compliance-mini-grid {
    grid-template-columns: 1fr
  }

  .compliance-article p {
    font-size: 15px;
    line-height: 1.78
  }

  .hipaa-card {
    padding: 12px;
    border-radius: 18px
  }

  .compliance-detail-layout {
    gap: 34px
  }
}

/* Homepage Who We Are toggle content */
.about-intro-section .lead {
  max-width: 680px
}

.toggle-content-btn {
  margin-top: 22px
}

.about-toggle-content {
  display: none;
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(15, 118, 110, .18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 118, 110, .055), rgba(56, 189, 248, .045));
  box-shadow: var(--soft)
}

.about-toggle-content.open {
  display: block
}

.about-toggle-content p {
  font-size: 16px;
  line-height: 1.78;
  color: #42526a;
  margin-bottom: 14px
}

.about-toggle-content p:last-child {
  margin-bottom: 0
}

@media(max-width:620px) {
  .toggle-content-btn {
    width: 100%;
    margin-top: 18px
  }

  .about-toggle-content {
    padding: 18px;
    border-radius: 18px
  }

  .about-toggle-content p {
    font-size: 15px;
    line-height: 1.72
  }
}
/* p {
  text-align: justify;
  text-justify: inter-word;
}

@media (max-width: 767px) {
  p {
    text-align: left;
  }
} */
 .map-responsive {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.08);
}

.map-responsive iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 767px) {
  .map-responsive {
    height: 320px;
    border-radius: 18px;
  }
}
/* Logo size manually adjust here */
:root {
  --logo-width-desktop: 190px;
  --logo-width-mobile: 145px;
}

.site-logo {
  width: var(--logo-width-desktop);
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
}

/* Mobile logo size */
@media (max-width: 767px) {
  .site-logo {
    width: var(--logo-width-mobile);
  }
}

/* Footer Contact Css */
.footer-social {
  margin-top: 24px;
}

.footer-social h4 {
  margin-bottom: 14px;
  font-size: 18px;
}

.social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.social-link svg {
  width: 22px;
  height: 22px;
  display: block;
}

.social-link:hover {
  transform: translateY(-4px);
}

/* Original brand icon colors */
.social-link.facebook svg {
  fill: #1877f2;
}

.social-link.instagram svg {
  fill: #e4405f;
}

.social-link.linkedin svg {
  fill: #0a66c2;
}

.social-link.twitter svg {
  fill: #000000;
}

.social-link.youtube svg {
  fill: #ff0000;
}

@media (max-width: 767px) {
  .footer-social {
    margin-top: 20px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }
}

/* client-testimonials Page Css*/
/* ================================
   Client Testimonials Page
================================ */

/* ================================
   Client Testimonials Page
   Theme Matched With Website
================================ */

:root {
  --testimonial-primary: #0f766e;
  --testimonial-secondary: #0b1f3a;
  --testimonial-accent: #38bdf8;
  --testimonial-light: #f8fafc;
  --testimonial-border: #e2e8f0;
}

/* Hero Section */
.testimonial-hero {
  position: relative;
  min-height: 460px;
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.96) 0%, rgba(15, 118, 110, 0.88) 55%, rgba(248, 250, 252, 0.72) 100%),
    url("../images/testimonial-hero-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

.testimonial-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(56, 189, 248, 0.16), transparent 18%),
    radial-gradient(circle at 75% 20%, rgba(20, 184, 166, 0.14), transparent 22%);
  pointer-events: none;
}

.testimonial-hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  align-items: center;
  min-height: 460px;
  gap: 40px;
}

.testimonial-hero-content {
  max-width: 680px;
  color: #ffffff;
}

.quote-mark {
  display: block;
  font-size: 80px;
  line-height: 0.75;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.testimonial-hero-content h1 {
  color: #ffffff;
  font-size: clamp(36px, 4.5vw, 60px);
  margin-bottom: 20px;
  max-width: 780px;
}

.testimonial-hero-content p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 21px;
  line-height: 1.55;
  max-width: 650px;
  text-align: left;
}

.hero-client {
  margin-top: 24px;
}

.hero-client strong,
.hero-client span {
  display: block;
  color: #ffffff;
}

.hero-client strong {
  font-size: 16px;
  font-weight: 900;
}

.hero-client span {
  font-size: 14px;
  opacity: 0.86;
  font-weight: 700;
}

.testimonial-hero-image {
  align-self: end;
  display: flex;
  justify-content: center;
}

.testimonial-hero-image img {
  max-height: 430px;
  width: auto;
  object-fit: contain;
}

/* Lead Form Section */
.testimonial-lead-section {
  padding: 38px 0 52px;
  background: #ffffff;
}

.testimonial-lead-box {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 90% 15%, rgba(56, 189, 248, 0.22), transparent 24%),
    linear-gradient(135deg, var(--testimonial-secondary), var(--testimonial-primary));
  border-radius: 26px;
  padding: 42px 46px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.14);
}

.testimonial-lead-box h2 {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 6px;
}

.testimonial-lead-box p {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.testimonial-lead-box p strong {
  color: var(--testimonial-accent);
}

.testimonial-lead-box span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.testimonial-mini-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 28px auto 0;
}

.testimonial-mini-form input {
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 16px;
  font-size: 14px;
  background: #ffffff;
}

.testimonial-mini-form button {
  grid-column: 1 / -1;
  height: 48px;
  border-radius: 14px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.testimonial-mini-form button:hover {
  background: #ffffff;
  color: var(--testimonial-primary);
}

/* Ratings Section */
.ratings-section {
  padding: 0 0 62px;
  background: #ffffff;
}

.ratings-box {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  border: 1px solid var(--testimonial-border);
  border-radius: 24px;
  padding: 34px 34px 26px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.08);
}

.ratings-title {
  display: inline-block;
  background: rgba(15, 118, 110, 0.09);
  color: var(--testimonial-primary);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 28px;
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.rating-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--testimonial-light);
  border: 1px solid var(--testimonial-border);
  border-radius: 18px;
  padding: 18px 14px;
}

.rating-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 22px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.08);
}

.rating-logo.google {
  color: #4285f4;
}

.rating-logo.trust {
  color: #00b67a;
}

.rating-logo.review {
  color: var(--testimonial-primary);
}

.rating-logo.cert {
  color: var(--testimonial-secondary);
  font-size: 15px;
}

.rating-item strong {
  display: block;
  color: var(--testimonial-secondary);
  font-size: 14px;
  text-align: left;
}

.rating-item span {
  display: block;
  color: #f59e0b;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

/* Video Testimonial Section */
.video-testimonial-section {
  padding: 0 0 70px;
  background: #ffffff;
}

.video-testimonial-grid {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 26px;
}

.video-card {
  position: relative;
  overflow: hidden;
  background: var(--testimonial-secondary);
  min-height: 370px;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.12);
}

.video-card img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 28px;
  background: rgba(11, 31, 58, 0.34);
  transition: 0.25s ease;
}

.play-button:hover {
  background: var(--testimonial-primary);
}

.video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(11, 31, 58, 0.96), transparent);
}

.video-caption h3,
.video-caption p {
  color: #ffffff;
}

.video-caption p {
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.video-review-card {
  background: var(--testimonial-light);
  border: 1px solid var(--testimonial-border);
  border-radius: 26px;
  padding: 42px 34px;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.08);
}

.large-quote {
  font-size: 72px;
  color: var(--testimonial-primary);
  line-height: 0.8;
  font-weight: 900;
}

.video-review-card p {
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}

.review-author {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.review-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong,
.review-author span,
.review-author small {
  display: block;
}

.review-author strong {
  color: var(--testimonial-secondary);
  font-weight: 900;
}

.review-author span,
.review-author small {
  color: #64748b;
  font-size: 12px;
}

/* Stats Section */
.testimonial-stats-section {
  padding: 0 0 70px;
}

.testimonial-stats-grid {
  width: min(1180px, 92%);
  margin: auto;
  background:
    radial-gradient(circle at 90% 20%, rgba(56, 189, 248, 0.2), transparent 26%),
    linear-gradient(135deg, var(--testimonial-secondary), var(--testimonial-primary));
  padding: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.14);
}

.testimonial-stat-card {
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
  padding: 26px 14px;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.14);
}

.testimonial-stat-card strong {
  display: block;
  color: var(--testimonial-secondary);
  font-size: 34px;
  font-weight: 900;
}

.testimonial-stat-card span {
  display: block;
  color: #64748b;
  font-size: 14px;
  margin-top: 6px;
  font-weight: 700;
}

/* Featured Carousel Section */
.featured-testimonial-section {
  padding: 0 0 74px;
}

.featured-testimonial-wrap {
  width: min(1180px, 92%);
  margin: auto;
  background:
    radial-gradient(circle at 80% 15%, rgba(56, 189, 248, 0.22), transparent 24%),
    linear-gradient(135deg, #f8fafc, #e8f8f6);
  min-height: 430px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 28px;
  padding: 54px 42px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--testimonial-border);
}

.featured-left h2 {
  color: var(--testimonial-secondary);
  font-size: clamp(30px, 3vw, 44px);
  margin-bottom: 16px;
}

.featured-left p {
  color: #475569;
  margin-bottom: 22px;
  text-align: left;
}

.featured-slider {
  position: relative;
  min-width: 0;
}

.featured-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 34px 10px;
  scrollbar-width: none;
}

.featured-track::-webkit-scrollbar {
  display: none;
}

.featured-card {
  flex: 0 0 270px;
  scroll-snap-align: center;
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 22px;
  text-align: center;
  min-height: 300px;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.12);
  border: 1px solid var(--testimonial-border);
  transform: scale(0.94);
  transition: 0.25s ease;
}

.featured-card.active,
.featured-card:hover {
  transform: scale(1.03);
}

.featured-card img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  margin: -64px auto 12px;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.16);
}

.stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.featured-card h3 {
  color: var(--testimonial-secondary);
  font-size: 18px;
  margin-bottom: 10px;
}

.featured-card p {
  color: #475569;
  font-size: 13.5px;
  line-height: 1.7;
  text-align: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 0;
  background: var(--testimonial-primary);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
}

.slider-arrow.prev {
  left: -8px;
}

.slider-arrow.next {
  right: -8px;
}

/* Review Grid Section */
.testimonial-grid-section {
  padding: 10px 0 90px;
}

.center-head {
  display: block;
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.center-head h2 {
  margin-top: 14px;
}

.center-head p {
  text-align: center;
  margin-top: 12px;
}

.client-review-grid {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 24px;
}

.client-review-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 38px 26px 30px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.09);
  border: 1px solid var(--testimonial-border);
  position: relative;
  transition: 0.25s ease;
}

.client-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.13);
}

.client-review-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: -74px auto 12px;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.16);
}

.client-review-card h3 {
  color: var(--testimonial-secondary);
  font-size: 18px;
  margin-bottom: 2px;
}

.client-review-card span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 14px;
}

.client-review-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}

.client-review-card::before {
  content: "“";
  display: block;
  color: rgba(15, 118, 110, 0.12);
  font-size: 76px;
  line-height: 0.7;
  margin-bottom: -10px;
  font-weight: 900;
}

/* Fully Responsive */
@media (max-width: 1100px) {
  .testimonial-hero-wrap,
  .video-testimonial-grid,
  .featured-testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .testimonial-hero-wrap {
    padding: 70px 0 0;
  }

  .testimonial-hero-image img {
    max-height: 340px;
  }

  .featured-left {
    text-align: center;
  }

  .featured-left p {
    text-align: center;
  }
}

@media (max-width: 980px) {
  .ratings-grid,
  .testimonial-stats-grid,
  .client-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-mini-form {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-mini-form button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .testimonial-hero {
    min-height: auto;
  }

  .testimonial-hero-wrap {
    min-height: auto;
    padding: 60px 0 0;
    gap: 20px;
  }

  .testimonial-hero-content h1 {
    font-size: 34px;
  }

  .testimonial-hero-content p {
    font-size: 18px;
  }

  .testimonial-hero-image img {
    max-height: 300px;
  }

  .testimonial-lead-section {
    padding: 28px 0 42px;
  }

  .testimonial-lead-box {
    padding: 30px 20px;
    border-radius: 22px;
  }

  .testimonial-lead-box p {
    font-size: 18px;
  }

  .testimonial-mini-form {
    grid-template-columns: 1fr;
  }

  .ratings-box {
    padding: 26px 18px;
    border-radius: 20px;
  }

  .ratings-grid,
  .testimonial-stats-grid,
  .client-review-grid {
    grid-template-columns: 1fr;
  }

  .rating-item {
    justify-content: flex-start;
  }

  .video-card {
    min-height: 280px;
    border-radius: 22px;
  }

  .video-card img {
    height: 280px;
  }

  .video-review-card {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .testimonial-stats-grid {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .featured-testimonial-wrap {
    padding: 38px 18px;
    border-radius: 22px;
  }

  .featured-card {
    flex-basis: 84%;
  }

  .slider-arrow {
    display: none;
  }

  .client-review-grid {
    gap: 58px;
  }

  .client-review-card {
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-hero-content h1 {
    font-size: 30px;
  }

  .testimonial-hero-content p {
    font-size: 16px;
  }

  .testimonial-lead-box h2 {
    font-size: 25px;
  }

  .testimonial-stat-card strong {
    font-size: 30px;
  }

  .featured-left h2 {
    font-size: 28px;
  }
}

/* Policy pages BPO statistics section */
/* ================================
   Policy Pages UI
================================ */

.policy-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.18), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 82px 0 58px;
  border-bottom: 1px solid #e2e8f0;
}

.policy-hero-wrap {
  max-width: 880px;
}

.policy-hero h1 {
  margin-top: 16px;
  font-size: clamp(38px, 5vw, 66px);
}

.policy-hero p {
  margin-top: 18px;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.75;
  color: #64748b;
  text-align: left;
}

.policy-section {
  padding: 72px 0 92px;
  background: #ffffff;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.08);
}

.policy-sidebar h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #0b1f3a;
}

.policy-sidebar a {
  display: block;
  padding: 13px 15px;
  border-radius: 14px;
  color: #334155;
  font-weight: 800;
  margin-bottom: 8px;
  background: #f8fafc;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.policy-sidebar a:hover,
.policy-sidebar a.active {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.09);
  border-color: rgba(15, 118, 110, 0.18);
}

.policy-content-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.1);
}

.policy-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 118, 110, 0.09);
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, 0.18);
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 30px;
}

.policy-updated strong {
  color: #0b1f3a;
}

.policy-block {
  padding: 28px 0;
  border-bottom: 1px solid #e2e8f0;
}

.policy-block:first-of-type {
  padding-top: 0;
}

.policy-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-block h2 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 14px;
  color: #0b1f3a;
}

.policy-block p {
  color: #475569;
  font-size: 16.5px;
  line-height: 1.85;
  text-align: justify;
}

.policy-block strong {
  color: #0b1f3a;
}

@media (max-width: 980px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .policy-sidebar h3 {
    grid-column: 1 / -1;
    margin-bottom: 6px;
  }

  .policy-sidebar a {
    text-align: center;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .policy-hero {
    padding: 60px 0 42px;
  }

  .policy-section {
    padding: 54px 0 72px;
  }

  .policy-sidebar {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 20px;
  }

  .policy-content-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .policy-block {
    padding: 24px 0;
  }

  .policy-block p {
    text-align: left;
    font-size: 15.8px;
  }
}
/*==========Policy Pages footer css=======*/
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #b8c7d9;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #1dbcae;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .footer-bottom-links a {
    font-size: 13.5px;
  }
}