@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --pbc-blue: #006DCB;
  --pbc-blue-dk: #005ab0;
  --pbc-blue-deep: #3b3d42;
  --pbc-navy: #144875;
  --pbc-blue-soft: #559CD5;
  --pbc-blue-accent: #398ffc;
  --pbc-dark: #202030;
  --pbc-darker: #20202f;
  --pbc-text: #272727;
  --pbc-muted: #818181;
  --pbc-light: #eff1f5;
  --pbc-white: #ffffff;
  --pbc-shadow: 0 12px 40px rgba(0, 109, 203, 0.14);
  --pbc-shadow-sm: 0 6px 20px rgba(0, 109, 203, 0.10);
  --bs-primary: var(--pbc-blue);
  --bs-primary-rgb: 0, 109, 203;
}

.btn-primary {
  --bs-btn-bg: var(--pbc-blue);
  --bs-btn-border-color: var(--pbc-blue);
  --bs-btn-hover-bg: var(--pbc-blue-dk);
  --bs-btn-hover-border-color: var(--pbc-blue-dk);
  --bs-btn-active-bg: var(--pbc-blue-deep);
  --bs-btn-active-border-color: var(--pbc-blue-deep);
}

.text-primary {
  color: var(--pbc-blue) !important;
}

.bg-primary {
  background-color: var(--pbc-blue) !important;
}

.link-primary {
  color: var(--pbc-blue) !important;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cabin", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--pbc-text);
  background: var(--pbc-white);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--pbc-text);
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h1,
.h1 {
  font-size: 39px;
  line-height: 1.1;
  letter-spacing: -1px;
}

h2,
.h2 {
  font-family: "Inter", sans-serif;
  font-size: 17px;
}

h3,
.h3 {
  font-size: 27px;
}

h4,
.h4 {
  font-size: 24px;
}

h5,
.h5 {
  font-size: 18px;
  line-height: 1.5;
}

h6,
.h6 {
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 1200px) {

  h1,
  .h1 {
    font-size: 64px;
  }

  h2,
  .h2 {
    font-size: 36px;
  }

  h3,
  .h3 {
    font-size: 36px;
  }
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--pbc-text);
  line-height: 1.1;
  letter-spacing: -1px;
}

p {
  color: var(--pbc-text);
  margin-bottom: 1rem;
  font-weight: 300;
}

strong,
b {
  font-weight: 700;
}

a {
  color: var(--pbc-blue);
  text-decoration: none;
  transition: color .25s ease;
}

a:hover {
  color: var(--pbc-blue-deep);
}

.section {
  padding: 90px 0;
}

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

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

  .section-sm {
    padding: 40px 0;
  }
}

.bg-soft {
  background: var(--pbc-light);
}

.bg-blue-soft {
  background: var(--pbc-blue-soft);
}

.bg-dark-navy {
  background: var(--pbc-dark);
  color: #fff;
}

.bg-dark-navy h1,
.bg-dark-navy h2,
.bg-dark-navy h3,
.bg-dark-navy h4,
.bg-dark-navy p {
  color: #fff;
}

.eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pbc-blue);
  margin-bottom: 14px;
}

.section-title {
  margin-bottom: 18px;
}

.lead-muted {
  color: var(--pbc-muted);
  font-size: 1.05rem;
  max-width: 720px;
}

/* ==================== Buttons ==================== */
.btn {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all .25s ease;
}

.btn-pbc {
  background: var(--pbc-blue);
  color: #fff;
  border: 2px solid var(--pbc-blue);
}

.btn-pbc:hover {
  background: var(--pbc-blue-deep);
  border-color: var(--pbc-blue-deep);
  color: #fff;

}

.btn-pbc-outline {
  background: transparent;
  color: var(--pbc-blue);
  border: 2px solid var(--pbc-blue);
}

.btn-pbc-outline:hover {
  background: var(--pbc-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-pbc-light {
  background: #fff;
  color: var(--pbc-dark);
  border: 2px solid #fff;
}

.btn-pbc-light:hover {
  background: var(--pbc-blue-soft);
  border-color: var(--pbc-blue-soft);
  color: #fff;
}

.btn-pbc i,
.btn-pbc-outline i {
  margin-right: 8px;
  transition: transform .25s ease;
}

/* ==================== Top Info Bar ==================== */
.topbar {
  background: var(--pbc-dark);
  color: #cdd1da;
  font-size: 0.875rem;
  padding: 10px 0;
}

.topbar a {
  color: #cdd1da;
}

.topbar a:hover {
  color: var(--pbc-blue);
}

.topbar .info-item {
  margin-right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar .info-item i {
  color: var(--pbc-blue);
}

.topbar .social a {
  margin-left: 14px;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .topbar {
    text-align: center;
  }

  .topbar .info-item {
    display: block;
    margin: 4px 0;
  }

  .topbar .social {
    margin-top: 8px;
  }
}

/* ==================== Navbar ==================== */
.site-navbar {
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  z-index: 1030;
}

.site-navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown .35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.site-navbar .navbar-brand img {
  height: 56px;
  width: auto;
}


.site-navbar .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--pbc-dark) !important;
  padding: 8px 12px !important;
  position: relative;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--pbc-blue) !important;
}

.site-navbar .dropdown-menu {
  border: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 12px 0;
  margin-top: 8px;
  min-width: 260px;
}

.site-navbar .dropdown-item {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 22px;
  color: var(--pbc-dark);
}

.site-navbar .dropdown-item:hover {
  background: var(--pbc-blue-soft);
  color: #fff;
}

.site-navbar .navbar-toggler {
  border: none;
  padding: 6px;
}

.site-navbar .navbar-toggler:focus {
  box-shadow: none;
}

/* ==================== Hero (full-width dark building bg) ==================== */
.hero-full {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 180px 0 120px;

  color: #fff;
  text-align: center;

  background:
    linear-gradient(rgba(20, 72, 117, 0.9), rgba(20, 72, 117, 0.9)),
    url('../images/Innovation-1-1.jpg') no-repeat center center / cover;

  background-blend-mode: multiply;

  transition: background 0.3s ease, border-radius 0.3s ease;
}

.hero-full h1 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 39px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 22px;
  max-width: 920px;
    margin: 0 auto 30px;
}

@media (min-width: 1200px) {
  .hero-full h1 {
    font-size: 86px;
  }
}

.hero-full h1 .highlight {
  color: var(--pbc-blue-soft);
}

.hero-full p.lead {
  color: #ffffff !important;
  font-size: 24px;
  font-weight: 400;
  max-width: 880px;
  margin: 0 auto 30px;
}

.hero-full .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero-full {

    padding: 40px 0 60px;
  }
}

/* Hero overlapping navbar (transparent navbar over hero) */
.navbar-on-dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent !important;
  box-shadow: none !important;
}

.navbar-on-dark .navbar-brand img {
  filter: brightness(0) invert(1);
}

.navbar-on-dark .nav-link {
  color: #fff !important;
}

.navbar-on-dark .nav-link:hover,
.navbar-on-dark .nav-link.active {
  color: var(--pbc-blue-soft) !important;
}

.navbar-on-dark.is-sticky {
  position: fixed;
  background: var(--pbc-dark) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}

.navbar-on-dark .navbar-toggler i {
  color: #fff;
}

/* ==================== Page Banner ==================== */
.page-banner {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(120deg, var(--pbc-navy) 0%, var(--pbc-blue-deep) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/Mask-group-2-1.png') no-repeat right top;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.page-banner h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-banner .breadcrumb {
  display: inline-flex;
  background: transparent;
  margin: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, .85);
}

.page-banner .breadcrumb-item a:hover {
  color: #fff;
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .5);
}

.page-banner .breadcrumb-item.active {
  color: var(--pbc-blue-soft);
}

/* ==================== Service Cards ==================== */
.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #eef1f5;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pbc-shadow);
  border-color: transparent;
}

.service-card .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .img img {
  transform: scale(1.07);
}

.service-card .icon-badge {
  position: absolute;
  bottom: -22px;
  left: 22px;
  width: 54px;
  height: 54px;
  background: var(--pbc-blue);
  border-radius: 12px;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 18px rgba(0, 109, 203, 0.4);
}

.service-card .body {
  padding: 36px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card h4 a {
  color: var(--pbc-dark);
}

.service-card h4 a:hover {
  color: var(--pbc-blue);
}

.service-card p {
  color: var(--pbc-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}

.service-card .read-more {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pbc-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card .read-more i {
  transition: transform .25s ease;
}

.service-card .read-more:hover i {
  transform: translateX(5px);
}

/* ==================== Why Us – Feature card ==================== */
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid #eef1f5;
  transition: all .3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pbc-shadow);
  border-color: transparent;
}

.feature-card .num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--pbc-blue-soft);
  line-height: 1;
  margin-bottom: 10px;
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--pbc-dark);
}

.feature-card p {
  color: var(--pbc-muted);
  font-size: 0.95rem;
  margin: 0;
}

.feature-card .icon {
  width: 64px;
  height: 64px;
  background: var(--pbc-blue-soft);
  color: var(--pbc-blue-deep);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: all .3s ease;
}

.feature-card:hover .icon {
  background: var(--pbc-blue);
  color: #fff;
}

/* ==================== About / Two-column blocks ==================== */
.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: 14px;
  max-width: 100%;
}

.about-img-wrap .badge-years {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--pbc-blue);
  color: #fff;
  padding: 18px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 109, 203, 0.4);
}

.about-img-wrap .badge-years .num {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
}

.about-img-wrap .badge-years .lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.tick-list li {
  position: relative;
  padding: 8px 0 8px 38px;
  font-size: 1rem;
  color: var(--pbc-text);
}

.tick-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  width: 26px;
  height: 26px;
  background: var(--pbc-blue-soft);
  color: var(--pbc-blue-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}

/* ==================== Counters ==================== */
.counter-strip {
  background: var(--pbc-blue);
  color: #fff;
  padding: 60px 0;
}

.counter-item {
  text-align: center;
  color: #fff;
}

.counter-item .num {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}

.counter-item .num .plus {
  font-size: 2rem;
  margin-left: 4px;
}

.counter-item .lbl {
  margin-top: 10px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

/* ==================== Testimonials ==================== */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  height: 100%;
  border: 1px solid #eef1f5;
  position: relative;
  transition: all .3s ease;
}

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

.testimonial-card .quote-mark {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 3rem;
  color: var(--pbc-blue-soft);
  line-height: 1;
  font-family: serif;
}

.testimonial-card .stars {
  color: #f5b201;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--pbc-text);
  font-style: italic;
  margin-bottom: 22px;
}

.testimonial-card .person {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #eef1f5;
  padding-top: 18px;
}

.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pbc-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.testimonial-card .name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--pbc-dark);
  margin: 0;
  line-height: 1.2;
}

.testimonial-card .role {
  font-size: 0.85rem;
  color: var(--pbc-muted);
}

/* ==================== Logo Strip ==================== */
.logo-strip {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid #eef1f5;
  border-bottom: 1px solid #eef1f5;
}

.logo-strip img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all .3s ease;
}

.logo-strip img:hover {
  filter: none;
  opacity: 1;
}

/* ==================== CTA Strip ==================== */
.cta-strip {
  background: linear-gradient(120deg, var(--pbc-blue-deep) 0%, var(--pbc-blue) 100%);
  padding: 70px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-strip h2 {
  color: #fff;
  margin-bottom: 8px;
}

.cta-strip p {
  color: rgba(255, 255, 255, .9);
  margin: 0;
}

/* ==================== Footer ==================== */
.site-footer {
  background: var(--pbc-dark);
  color: #b6b8bf;
  padding: 80px 0 0;
}

.site-footer h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 22px;
  text-transform: capitalize;
  letter-spacing: 0.08em;
}

.site-footer .footer-brand img {
  height: 60px;
  margin-bottom: 18px;
}

.site-footer p {
  color: #b6b8bf;
  font-size: 0.95rem;
}

.site-footer a {
  color: #b6b8bf;
}

.site-footer .btn-pbc{
  color:#fff!important
}

.site-footer .btn-pbc:hover{
	text-decoration:none;
}

.site-footer a:hover {
  color: var(--pbc-blue);
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin-bottom: 10px;
}

.site-footer .footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer .footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--pbc-blue);
  font-size: 0.85rem;
}

.site-footer .contact-block {
  font-size: 0.95rem;
}

.site-footer .contact-block i {
  color: var(--pbc-blue);
  margin-right: 10px;
  width: 18px;
  text-align: center;
}

.site-footer .contact-block>div {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.site-footer .social-icons {
  margin-top: 18px;
}

.site-footer .social-icons a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  margin-right: 8px;
  color: #fff;
  transition: all .25s ease;
}

.site-footer .social-icons a:hover {
  background: var(--pbc-blue);
  transform: translateY(-3px);
}

.site-footer .footer-bottom {
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 0.9rem;
}

/* ==================== Forms ==================== */
.form-control,
.form-select {
  border: 1.5px solid #e1e5eb;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.96rem;
  background: #fff;
  transition: all .25s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--pbc-blue);
  box-shadow: 0 0 0 4px rgba(0, 109, 203, 0.12);
}

.form-label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--pbc-dark);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid #eef1f5;
  text-align: center;
  transition: all .3s ease;
}

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

.contact-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: var(--pbc-blue-soft);
  color: var(--pbc-blue-deep);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.contact-card h5 {
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--pbc-muted);
  margin: 0;
}

.contact-card a {
  color: var(--pbc-text);
}

.contact-card a:hover {
  color: var(--pbc-blue);
}

/* ==================== Blog ==================== */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eef1f5;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pbc-shadow);
  border-color: transparent;
}

.blog-card .img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.blog-card:hover .img img {
  transform: scale(1.07);
}

.blog-card .body {
  padding: 26px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card .meta {
  font-size: 0.82rem;
  color: var(--pbc-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.blog-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.blog-card h4 a {
  color: var(--pbc-dark);
}

.blog-card h4 a:hover {
  color: var(--pbc-blue);
}

.blog-card p {
  color: var(--pbc-muted);
  font-size: 0.93rem;
  margin-bottom: 16px;
  flex: 1;
}

/* ==================== Service Detail ==================== */
.service-hero-img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.service-content h2 {
  margin-top: 30px;
  margin-bottom: 16px;
}

.service-content h3 {
  margin-top: 26px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.service-content p {
    color: var(--pbc-text)!important;
}

.service-content ul {
  padding-left: 0;
  list-style: none;
}

.service-content ul li {
  position: relative;
  padding: 8px 0 8px 34px;

}

.service-content ul li::before {
  content: '.';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
    left: 5px;
    top: -20px;
    color: var(--pbc-text);
    font-size: 40px;

}

.service-sidebar {
  background: var(--pbc-light);
  border-radius: 14px;
  padding: 28px;
  position: sticky;
  top: 100px;
}

.service-sidebar h5 {
  margin-bottom: 18px;
}

.service-sidebar .nav-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-sidebar .nav-services li {
  margin-bottom: 8px;
}

.service-sidebar .nav-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--pbc-dark);
  transition: all .25s ease;
}

.service-sidebar .nav-services a:hover,
.service-sidebar .nav-services a.active {
  background: var(--pbc-blue);
  color: #fff;
}

.service-sidebar .nav-services a i {
  font-size: 0.8rem;
}

.contact-cta-box {
  margin-top: 26px;
  background: linear-gradient(135deg, var(--pbc-blue) 0%, var(--pbc-blue-deep) 100%);
  border-radius: 14px;
  padding: 28px;
  color: #fff;
  text-align: center;
}

.contact-cta-box h5 {
  color: #fff;
  margin-bottom: 10px;
}

.contact-cta-box p {
  color: rgba(255, 255, 255, .9);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.contact-cta-box .phone {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 14px;
}

/* ==================== Industries chips ==================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.industry-chip {
  background: #fff;
  border: 1px solid #eef1f5;
  padding: 14px 18px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pbc-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .25s ease;
}

.industry-chip i {
  color: var(--pbc-blue);
}

.industry-chip:hover {
  background: var(--pbc-blue);
  color: #fff;
  border-color: var(--pbc-blue);
  transform: translateY(-2px);
}

.industry-chip:hover i {
  color: #fff;
}

/* ==================== Team ==================== */
.team-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  border: 1px solid #eef1f5;
  height: 100%;
  transition: all .3s ease;
}

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

.team-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 4px solid var(--pbc-blue-soft);
}

.team-card h5 {
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.9rem;
  color: var(--pbc-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.92rem;
  color: var(--pbc-muted);
}

/* ==================== Back to top ==================== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  background: var(--pbc-blue);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;

  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .25s ease;
  z-index: 999;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--pbc-blue-deep);
}

/* ==================== WhatsApp / Phone Float ==================== */
.phone-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  background: var(--pbc-blue);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.phone-float:hover {
  background: var(--pbc-blue-deep);
  color: #fff;

}

@media (max-width: 575px) {
  .phone-float {
    left: 16px;
    bottom: 16px;
    padding: 10px 16px;
    font-size: 1rem;
  }
}

/* ==================== Animations ==================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== Industries List (homepage – plain bullet style) ==================== */
.industries-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.industries-list li {
  font-family: "Inter", sans-serif;
  color: #818181;
  padding: 14px 0;
  border-bottom: 1px solid #eef1f5;
      font-size: 20px;
}

p {
  color: #818181 !important;
}

.industries-list li:last-child {
  border-bottom: none;
}

/* ==================== Why Card (homepage 4-up) ==================== */
.why-card {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  padding: 22px 22px 26px;
  height: 100%;
  transition: all .3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pbc-shadow);
  border-color: transparent;
}

.why-card-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.why-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.why-card:hover .why-card-img img {
  transform: scale(1.08);
}

.why-card h3 {
  color: var(--pbc-dark);
  font-size: 1.1rem;
}

.why-card p {
  color: var(--pbc-muted);
  font-size: 0.93rem;
  margin: 0;
}

/* ==================== Simple Service Card (homepage minimal) ==================== */
.service-card-simple {
  text-align: center;
  display: block;
  text-decoration: none;
}

.service-card-simple .img-wrap {

  overflow: hidden;
  aspect-ratio: 16 / 11;
  margin-bottom: 14px;
}

.service-card-simple .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card-simple:hover .img-wrap img {
  transform: scale(1.06);
}

.service-card-simple .name {
  font-family: "Inter", sans-serif;
  font-weight: 600;

  color: var(--pbc-dark);
  display: block;
  transition: color .25s ease;
}

.service-card-simple:hover .name {
  color: var(--pbc-blue);
}

/* ==================== Light-Blue CTA Section ==================== */
.cta-light-blue {
  background-color: transparent;
  background-image: linear-gradient(180deg, #CEE7FC 0%, #CEE7FC 100%);
  padding: 120px 0;
  text-align: center;
}

.cta-light-blue h2 {
  text-transform: uppercase;
  letter-spacing: 0.2em;

  margin-bottom: 14px;
  font-weight: 700;
}

.cta-light-blue p {
  color: var(--pbc-text);
  margin-bottom: 26px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== Phone CTA Banner (dark building bg) ==================== */
.phone-cta-banner {
  position: relative;
  padding: 90px 0;
  background:
    linear-gradient(rgba(20, 72, 117, 0.9), rgba(20, 72, 117, 0.9)),
    url('../images/corporate-building-2022-12-15-21-22-50-utc-1-1-1.png') no-repeat center center / cover;
  color: #fff;
   background-blend-mode: multiply;
  text-align: center;
  height: 80vh;
  display: flex;
  align-items: center;
}

.phone-cta-banner h2 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 18px;
  font-size: 40px;
}

.phone-cta-banner .phone-big {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.phone-cta-banner .phone-big:hover {
  color: var(--pbc-blue-soft);
}

.phone-cta-banner p {
  color: #fff !important;
  margin-bottom: 24px;
  font-size: 22px;
}

/* ==================== Why Choose Us (homepage – icons + text) ==================== */
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 35px;
}

.why-feature svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.why-feature .ic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--pbc-blue-soft);
  color: var(--pbc-blue-deep);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.why-feature h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--pbc-dark);
  font-weight: 700;
}

.why-feature p {
  color: var(--pbc-muted);
  font-size: 20px;
  margin: 0;
}

.why-feature svg {
  width: 85px;
}

/* ==================== Testimonial card – soft blue alt ==================== */
.testimonial-card-soft {
  background: var(--pbc-blue-soft);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  position: relative;
  border: none;
}

.testimonial-card-soft p {
  color: #fff!important;
  font-size: 20px;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-card-soft .name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #000!important;
  margin: 0;
  font-size: 1rem;
}

.testimonial-card-soft .role {
  font-size: 0.85rem;
   color: #fff!important;
  display: block;
  margin-bottom: 14px;
}

.testimonial-card-soft .client-logo {
  max-height: 44px;
  width: auto;
  margin-top: 10px;
}

/* Testimonial carousel pagination dots */
.tcarousel .carousel-indicators {
  bottom: -38px;
  margin: 0;
}

.tcarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd2dc;
  border: none;
  margin: 0 5px;
  opacity: 1;
  transition: all .25s ease;
}

.highlight {
  color: var(--pbc-blue-soft);
}

.tcarousel .carousel-indicators .active {
  background: var(--pbc-blue);
  width: 26px;
  border-radius: 6px;
}

/* ==================== Section heading style (uppercase tracked – Archivo for H2 like live site) ==================== */
.section-heading {
  font-family: "Cabin", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--pbc-text);
  margin-bottom: 16px;
  font-size: 36px;
      letter-spacing: 0.2em;
}

.section-subtitle,
.cta-light-blue p {
  color: var(--pbc-muted);
  margin-bottom: 0;
  font-size: 22px;
}

/* ==================== Carousel buttons ==================== */
.custom-carousel-btn {
  width: 44px;
  height: 44px;
  background: var(--pbc-blue);
  color: #fff;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  opacity: 1;
  transition: all .25s ease;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(0, 109, 203, 0.35);
}

.custom-carousel-btn:hover {
  background: var(--pbc-blue-deep);
  transform: translateY(-50%) scale(1.06);
}

.custom-carousel-btn.carousel-control-prev {
  left: -22px;
}

.custom-carousel-btn.carousel-control-next {
  right: -22px;
}

@media (max-width: 991px) {
  .custom-carousel-btn.carousel-control-prev {
    left: 10px;
  }

  .custom-carousel-btn.carousel-control-next {
    right: 10px;
  }
}

/* ==================== Full-width map ==================== */
.map-full {
  line-height: 0;
  margin-top: 30px;
}

.map-full iframe {
  display: block;
}

/* ==================== About page – Intro / quote ==================== */
.about-intro {
  text-align: center;
  padding: 60px 0 30px;
}
.about-intro .quote {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
      color: var(--pbc-text) !important;
  line-height: 1.4;
  max-width: 750px;
  margin: 15px auto 0;
}

/* ==================== About page – Team blocks (alternating image/text) ==================== */
.team-block {
  margin-bottom: 60px;
}
.team-block:last-child { margin-bottom: 0; }
.team-block .team-photo {

  width: 100%;
  height: auto;
  display: block;
}
.team-block h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--pbc-text);
}
.team-block .job-title {
  font-style: italic;
  color: var(--pbc-muted);
  margin-bottom: 16px;
  display: block;
}
.team-block p {
  color: #000!important;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Owner block (centered photo + paragraph layout) */
.owner-block { padding-top: 20px; }
.owner-block img {

  width: 100%;
  height: auto;
}

/* ==================== Notable Clients (Owl Carousel) ==================== */
.notable-clients {
  padding: 60px 0 80px;
  background: #fff;
}
.notable-clients .clients-carousel { padding: 10px 0; }
.notable-clients .clients-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  padding: 0 10px;
}
.notable-clients .clients-carousel img {
  max-height: 80px;
  max-width: 100%;
  width: auto;

  transition: all .3s ease;
}
.notable-clients .clients-carousel img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* Owl Carousel — themed dots & arrows */
.owl-theme .owl-dots { margin-top: 24px !important; }
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #cbd2dc;
  margin: 5px;
  transition: all .25s ease;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--pbc-blue);
  width: 26px;
  border-radius: 6px;
}
.owl-theme .owl-nav { margin-top: 0 !important; }
.owl-theme .owl-nav [class*=owl-] {
  background: var(--pbc-blue) !important;
  color: #fff !important;
  width: 40px; height: 40px;
  border-radius: 50% !important;
  font-size: 1rem !important;
  margin: 0 6px !important;
  transition: all .25s ease;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--pbc-blue-dk) !important;
  transform: scale(1.05);
}

/* ==================== Service Areas (faded US map bg + 3-col list) ==================== */
.service-areas {
  position: relative;
  padding: 90px 0;
  background-color: var(--pbc-light);
  background-image: url('../images/map.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90% auto;
  overflow: hidden;
}
.service-areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(239, 241, 245, 0.55) 0%, rgba(239, 241, 245, 0.85) 100%);
  z-index: 0;
  pointer-events: none;
}
.service-areas .container { position: relative; z-index: 1; }
.region-card {

  margin-bottom: 30px;
  overflow: hidden;
}
.region-card .region-head {
    background-image: url(https://prestigebuildingcare.com/wp-content/uploads/2023/11/Rectangle-6053-2.png);
    padding: 20px 14px 20px 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 95%;
  color: #fff;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  border-radius: 999px;
  display: inline-block;
  margin: 14px 14px 0;

}
.region-card .city-grid {
  padding: 22px 28px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 22px;
}
.region-card .city-grid .city {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pbc-text);
  font-size: 20px;
  padding: 6px 0;
}
.region-card .city-grid .city i {
  color: var(--pbc-blue);
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  .region-card .city-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .region-card .city-grid { grid-template-columns: 1fr; }
}

/* ==================== Target Market (2-col checklist) ==================== */
.target-market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 60px;
  max-width: 720px;
  margin: 30px auto 0;
}
.target-market-grid .item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  color: var(--pbc-text);
  padding: 6px 0;
}
.target-market-grid .item i {

  color: var(--pbc-blue);

  font-size: 18px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .target-market-grid { grid-template-columns: 1fr; gap: 8px; }
}

/* ==================== Core Values (3 light blue cards) ==================== */
.core-values-grid { margin-top: 30px; }
.core-value-card {
      background-color: #CEE7FC;
  color: #fff;
  border-radius: 14px;
  padding: 30px 26px;
  height: 100%;
  text-align: center;
}
.core-value-card h4 {
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22;
  margin-bottom: 14px;
}
.core-value-card p {
  color: #000!important;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* ==================== "Highly trained" with 2 illustration cards ==================== */
.highly-trained-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}


.illust-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--pbc-text);
  padding-top: 15px;
}
.illust-card p {
  font-size: 18px;
  color: var(--pbc-text)!important;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .highly-trained-cards { grid-template-columns: 1fr; }
}

/* ==================== Why Choose Us (icon block) – also used on about ==================== */
.icon-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.icon-block .ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0, 109, 203, 0.1);
  color: var(--pbc-blue);
  display: grid; place-items: center;
  font-size: 1.05rem;
}
.icon-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--pbc-text);
}
.icon-block p {
  font-size: 0.92rem;
  color: var(--pbc-muted);
  margin: 0;
}

/* ==================== Why Us – commitment intro & alternating rows ==================== */
.commitment-intro {
  text-align: center;
  padding: 70px 0 30px;
}
.commitment-intro p {

  color: var(--pbc-text)!important;
  font-size: 22px;
}

.commitment-row {
  padding: 100px 0;
}
.commitment-row.bg-soft { background: var(--pbc-light); }
.commitment-row .feature-img {

  width: 100%;
  height: auto;
  display: block;
}
.commitment-row .feature-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--pbc-text);
}
.commitment-row .feature-text p {
  color: var(--pbc-text)!important;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 991px) {
  .commitment-row { padding: 40px 0; }
}

/* Closing paragraph */
.closing-statement {
  padding: 60px 0;
  text-align: center;
}
.closing-statement p {
  max-width: 860px;
  margin: 0 auto;
  color: var(--pbc-text)!important;
  line-height: 1.5;
}

/* ==================== Services list page ==================== */
.services-intro {
  text-align: center;
  padding: 70px 0 30px;
}
.services-intro p {
  font-size: 22px;
  color: var(--pbc-text)!important;
}

/* Use existing commitment-row styles for alternating rows */
.service-row .feature-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--pbc-text);
}
.service-row .feature-text p {
  color: var(--pbc-muted);

  line-height: 1.75;
  margin-bottom: 22px;
}

/* Service Areas image cards */
.areas-section {
  padding: 80px 0 100px;
  text-align: center;
}
.area-card {
  text-align: center;
}
.area-card .img-wrap {

  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 16px;
  box-shadow: var(--pbc-shadow-sm);
}
.area-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.area-card:hover .img-wrap img { transform: scale(1.05); }
.area-card .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--pbc-text);
}
.area-card .label i { color: var(--pbc-blue); }

/* ==================== Service Detail – Hero banner with image ==================== */
.service-hero-banner {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0a1830;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.service-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.service-hero-banner h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  margin: 0;
}
@media (max-width: 767px) {
  .service-hero-banner { height: 320px; }
  section,
  footer{
    overflow-x: clip!important;
  }
  .section-heading{
        font-size: 32px;
  }
  .why-feature h3 {
    font-size: 22px;
  }
  .why-feature p,
  .section-subtitle, .cta-light-blue p{
        font-size: 18px;
  }
  .why-feature{
    margin-bottom: 15px;
  }
  .commitment-row .feature-img{
    height: auto;
  }
  .areas-section{
    padding: 0px 0 40px;
  }
  .service-detail-body{
     padding: 40px 0 40px!important;
  }
  .contact-page-section{
    padding: 40px 0 0px;
  }
}

/* Service Detail – body section */
.service-detail-body {
  padding: 100px 0 100px;
}
.service-detail-body .lead-intro {
     color: #221F20!important;

  line-height: 1.75;
  margin-bottom: 22px;
  font-weight: 400;
}
.service-detail-body .lead-into-list {
 color: #221F20!important;
  margin-bottom: 14px;
  font-weight: 600;
}
.service-detail-body ul.feature-list {
  list-style: disc;
  padding-left: 22px;
}
.service-detail-body ul.feature-list li {
 color: #221F20!important;

  line-height: 1.7;
  margin-bottom: 12px;
}
.service-detail-body ul.feature-list li strong { color: var(--pbc-text); }

/* More Services sidebar */
.more-services-sidebar h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--pbc-text);
  margin-bottom: 18px;
}
.more-services-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.more-services-sidebar li { margin-bottom: 10px; }
.more-services-sidebar a {
  color: var(--pbc-blue);
  font-weight: 500;

  transition: color .2s ease;
}
.more-services-sidebar a:hover { color: var(--pbc-blue-dk); text-decoration: underline; }
.more-services-sidebar a.active {
  color: var(--pbc-blue-deep);
  font-weight: 700;
}

/* ==================== Testimonial page – speech bubbles ==================== */
.testimonials-section {
  padding: 70px 0 90px;
}
.testimonials-section .section-heading {
  text-align: center;
  margin-bottom: 8px;
}
.testimonials-section .section-subtitle {
  text-align: center;
  color: var(--pbc-text)!important;
  margin-bottom: 30px;
}

.tcard {
  margin-bottom: 50px;
}
.tcard .bubble {
    background-color: #CEE7FC;
  border-radius: 10px;
  padding: 26px 32px;
  position: relative;
  margin-bottom: 36px;
  box-shadow: 0 4px 14px rgba(0, 109, 203, 0.08);
}
.tcard .bubble::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 56px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 22px 0 0;
  border-color: #CEE7FC transparent transparent transparent;
}
.tcard .bubble p {
      color: #221F20!important;

  line-height: 1.75;
  margin: 0;
  font-weight: 400;
}

.tcard .author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 16px;
}
.tcard .author .name {
  font-family: 'Inter', sans-serif;
  color: var(--pbc-blue)!important;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 4px;
  line-height: 1.2;
}
.tcard .author .meta {
  margin: 0;
  font-size: 18px;
     color: #272727!important;
  line-height: 1.5;
  font-weight: 400;
}
.tcard .logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 160px;
}
.tcard .logo img {
  max-height: 80px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 575px) {
  .tcard .author-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .tcard .logo { justify-content: flex-start; min-width: 0; }
}

/* ==================== Utilities ==================== */

.pb-0 {
  padding-bottom: 0 !important;
}

/* ==================== Resources page – article cards ==================== */
.resources-section {
  padding: 70px 0 90px;
}
.resources-section .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.res-card { margin-bottom: 30px; }
.res-card .img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 11;
  margin-bottom: 22px;
}
.res-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.res-card:hover .img-wrap img { transform: scale(1.04); }
.res-card h2{
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--pbc-text);
  line-height: 1.4;
}
.res-card p {
  color: var(--pbc-text)!important;
 
  line-height: 1.6;
  margin-bottom: 22px;
}
.res-card .read-more-btn {
  background: var(--pbc-blue);
  color: #fff;
  border-radius: 4px;
  padding: 9px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  letter-spacing: 0.02em;
  transition: all .25s ease;
}
.res-card .read-more-btn:hover {
  background: var(--pbc-blue-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 109, 203, 0.3);
}

/* ==================== Blog Detail (single article) ==================== */
.blog-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 60px 0;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}
.blog-hero .container { position: relative; z-index: 2; }
.blog-hero .category-chip {
  display: inline-block;
  background: var(--pbc-blue);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.blog-hero h1 {
  color: #fff;
  font-family: 'Inter', sans-serif;

  font-weight: 700;
  line-height: 1.2;
  max-width: 820px;
  margin-bottom: 22px;
}
.blog-hero .lead-text {
  color: rgba(255, 255, 255, 1)!important;

  max-width: 840px;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}
.blog-hero .author-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.blog-hero .author-row .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.blog-hero .author-row .meta { color: #fff; font-size: 0.95rem; }
.blog-hero .author-row .meta .by {
  font-weight: 700;
  display: block;
      font-size: 22px;
}
.blog-hero .author-row .meta .date {
  color: var(--pbc-blue-soft);

}

/* Article Body */
.blog-body {
  padding: 70px 0 50px;
}
.blog-body p {
  color: var(--pbc-text)!important;

  line-height: 1.7;
  margin-bottom: 22px;
  font-weight: 400;
}

/* Author box */
.blog-author-box {
  border-top: 1px solid #e7eaef;
  padding: 35px 0;
}
.blog-author-box .row { align-items: center; }
.blog-author-box .avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #d8dde4;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.4rem;
}
.blog-author-box .name {
  color: var(--pbc-blue);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

/* Prev/Next nav */
.blog-nav {
  border-top: 1px solid #e7eaef;
  padding: 30px 0 50px;
}
.blog-nav .nav-link-blog {
  display: block;
  color: var(--pbc-text);
  text-decoration: none;
}
.blog-nav .nav-link-blog .label {
  display: block;
  color: var(--pbc-blue);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.blog-nav .nav-link-blog .title {
  color: var(--pbc-text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-nav .nav-link-blog .title i {
  color: var(--pbc-text);
  font-size: 0.85rem;
}
.blog-nav .nav-link-blog:hover .title { color: var(--pbc-blue); }
.blog-nav .nav-link-blog:hover .title i { color: var(--pbc-blue); }
.blog-nav .nav-link-blog.next { text-align: right; }

/* ==================== Contact Page ==================== */
.contact-page-section {
  padding: 70px 0 30px;
}
.contact-page-section .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.contact-icon-card {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 12px;
}
.contact-icon-card .icon {
  font-size: 2.6rem;
  color: var(--pbc-blue);
  margin-bottom: 22px;
  display: block;
}
.contact-icon-card .text {
     color: #272727!important;
 
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.contact-icon-card a {
  color: var(--pbc-text);
  text-decoration: none;
}
.contact-icon-card a:hover { color: var(--pbc-blue); }

.contact-map-form {
  padding: 30px 0 80px;
}
.contact-map-wrap {
  width: 100%;
  height: 100%;
  min-height: 580px;
  border-radius: 4px;
  overflow: hidden;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 580px;
  border: 0;
  display: block;
}

/* Contact form (minimal underline style) */
.contact-form .form-group {
  margin-bottom: 22px;
}
.contact-form label {
  display: block;
  color: var(--pbc-muted);
  font-family: 'Cabin', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.contact-form .form-control {
  background: #f5f6f8;
  border: 1px solid #e7eaef;
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--pbc-text);
  width: 100%;
  transition: border-color .2s ease;
}
.contact-form .form-control:focus {
  background: #fff;
  border-color: var(--pbc-blue);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 109, 203, 0.12);
}
.contact-form textarea.form-control {
  resize: vertical;
  min-height: 220px;
}
.contact-form .submit-btn {
  background: var(--pbc-blue);
  color: #fff;
  border: none;
  padding: 10px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .2s ease;
}
.contact-form .submit-btn:hover {
  background: #3b3d42;

}
.blog-nav .nav-link-blog.next .title { justify-content: flex-end; }

/* ==================== Privacy Policy ==================== */
.privacy-section {
  padding: 70px 0 90px;
}
.privacy-section .section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.privacy-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--pbc-text);
  margin-top: 36px;
  margin-bottom: 16px;
  letter-spacing: 0;
  text-transform: none;
}
.privacy-section p {
  color: #202030!important;  
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 400;
}
.privacy-section a { color: var(--pbc-blue); }
.privacy-section a:hover { text-decoration: underline; }


/* ==================== Home-page testimonial bubble (stacked variant) ==================== */
.tcard-home .bubble {
  background: var(--pbc-blue-soft);
  background: #cee7fc;
  border-radius: 10px;
  padding: 26px 28px;
  position: relative;
  margin-bottom: 36px;
  min-height: 240px;
  box-shadow: 0 4px 14px rgba(0, 109, 203, 0.08);
}
.tcard-home .bubble::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #cee7fc transparent transparent transparent;
}
.tcard-home .bubble p {
  color: var(--pbc-text);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tcard-home .author {
  padding: 0 8px;
}
.tcard-home .author .name {
  font-family: 'Inter', sans-serif;
  color: var(--pbc-blue);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 4px;
  line-height: 1.2;
}
.tcard-home .author .meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--pbc-text);
  line-height: 1.5;
  font-weight: 400;
}
.tcard-home .logo-stack {
  margin-top: 24px;
  padding: 0 8px;
}
.tcard-home .logo-stack img {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ==================== Mobile Side Menu (≤991px) ==================== */
@media (max-width: 991.98px) {

  /* Hamburger style — bigger tap target, clean blue color */
  .site-navbar .navbar-toggler {
    border: none !important;
    padding: 8px 10px;
    background: transparent;
    color: var(--pbc-blue);
  }
  .site-navbar .navbar-toggler:focus { box-shadow: none !important; }
  .site-navbar .navbar-toggler i { color: var(--pbc-blue); }
  .navbar-on-dark .navbar-toggler i { color: #fff; }

  /* The side panel — always rendered, slides in from right */
  .site-navbar .navbar-collapse {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 320px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    background: #fff !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.18);
    z-index: 1060;
    padding: 80px 26px 30px !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none;
    visibility: hidden;
  }
  .site-navbar .navbar-collapse.show {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }
  /* Neutralise Bootstrap's collapsing/height jiggle that can hide content */
  .site-navbar .navbar-collapse.collapsing {
    height: 100vh !important;
    overflow-y: auto;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  /* Brand mark inside the panel (top-left) */
  .navbar-mobile-brand {
    position: absolute;
    top: 22px;
    left: 26px;
    line-height: 1;
  }
  .navbar-mobile-brand img { height: 42px; width: auto; }

  /* Close button (top-right of panel) */
  .navbar-mobile-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 38px;
    height: 38px;
    background: var(--pbc-light);
    border: none;
    border-radius: 50%;
    color: var(--pbc-text);
    font-size: 1.05rem;
    display: grid;
    place-items: center;
    transition: all .2s ease;
    z-index: 2;
  }
  .navbar-mobile-close:hover {
    background: var(--pbc-blue);
    color: #fff;
    transform: rotate(90deg);
  }

  /* Nav items as a stacked list */
  .site-navbar .navbar-nav {
    display: block;
    padding: 0;
    margin: 0;
  }
  .site-navbar .navbar-nav .nav-item {
    border-bottom: 1px solid #eef1f5;
    text-align: left;
  }
  .site-navbar .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
  .site-navbar .nav-link {
    padding: 14px 4px !important;
    color: var(--pbc-text) !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em;
    transition: color .2s ease, padding .2s ease;
  }
  .site-navbar .nav-link:hover,
  .site-navbar .nav-link.active {
    color: var(--pbc-blue) !important;
    padding-left: 10px !important;
  }
  .navbar-on-dark .navbar-collapse .nav-link {
    color: var(--pbc-text) !important;
  }
  .navbar-on-dark .navbar-collapse .nav-link:hover,
  .navbar-on-dark .navbar-collapse .nav-link.active {
    color: var(--pbc-blue) !important;
  }

  /* Services dropdown — expand inline within panel.
     Targets both default and Popper-positioned states to override Bootstrap's
     inline transform / top / left / inset that Popper may apply. */
  .site-navbar .dropdown-menu,
  .site-navbar .dropdown-menu[data-bs-popper] {
    position: static !important;
    box-shadow: none !important;
    background: #cee7fc !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 8px 0 !important;
    margin: 6px 0 14px !important;
    transform: none !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    float: none !important;
  }
  .site-navbar .dropdown-menu.show {
    display: block !important;
  }
  .site-navbar .dropdown-item {
    padding: 9px 16px !important;
    font-size: 0.85rem;
    color: var(--pbc-text) !important;
  }
  .site-navbar .dropdown-item:hover {
    background: transparent !important;
    color: var(--pbc-blue) !important;
    padding-left: 22px !important;
  }
  .site-navbar .dropdown-divider { margin: 4px 0; }

  /* Phone CTA button at bottom */
  .site-navbar .navbar-nav .ms-lg-3 {
    margin-left: 0 !important;
    margin-top: 22px !important;
    border-bottom: none !important;
  }
  .site-navbar .navbar-nav .btn-pbc {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 12px 20px;
  }

  /* Backdrop overlay */
  .navbar-mobile-backdrop {
    position: fixed;
    inset: 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .navbar-mobile-backdrop.show {
    opacity: 1;
    visibility: visible;

  }

  /* Body scroll lock when menu open */

}

/* Hide mobile-only elements on desktop */
@media (min-width: 992px) {
  .navbar-mobile-brand,
  .navbar-mobile-close,
  .navbar-mobile-backdrop {
    display: none !important;
  }
}

/* ==================== ADA / WCAG 2.1 AA Accessibility ==================== */

/* Screen-reader-only utility (visually hidden but available to assistive tech) */
.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Skip-to-main-content link — first focusable element on every page */
.skip-to-main {
  position: fixed;
  top: -100px;
  left: 12px;
  background: var(--pbc-blue);
  color: #fff !important;
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.skip-to-main:focus,
.skip-to-main:focus-visible {
  top: 0;
  color: #fff;
  outline: 3px solid #fff;
  outline-offset: -2px;
}

/* Strong visible focus indicators for keyboard users */
:focus-visible {
  outline: 3px solid var(--pbc-blue) !important;
  outline-offset: 2px !important;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.dropdown-item:focus-visible,
.read-more-btn:focus-visible,
.submit-btn:focus-visible,
.navbar-toggler:focus-visible,
.navbar-mobile-close:focus-visible {
  outline: 3px solid var(--pbc-blue) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 5px rgba(0, 109, 203, 0.18) !important;
}
.form-control:focus-visible,
.contact-form .form-control:focus-visible {
  outline: 2px solid var(--pbc-blue) !important;
  outline-offset: 0 !important;
  border-color: var(--pbc-blue) !important;
}
/* For dark backgrounds (hero, phone CTA), use white outline */
.hero-full :focus-visible,
.phone-cta-banner :focus-visible,
.navbar-on-dark :focus-visible,
.cta-light-blue :focus-visible {
  outline-color: #fff !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.25) !important;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Improve contrast for muted body text (4.5:1 against #fff requires #767676 or darker) */
.lead-muted,
.section-subtitle,
.contact-icon-card .text,
.tcard .author .meta,
.tcard-home .author .meta {
  color: #595959;
}

/* Form required-field indicator */
.form-required {
  color: #c0392b;
  margin-left: 2px;
}

/* High-contrast underline on hover for footer/inline links */
.site-footer a:hover,
.privacy-section a:hover,
.blog-body a:hover {
  text-underline-offset: 3px;
}
