@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* =========================
   Global CSS
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #101010;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}


/* =========================
   Header CSS
========================= */

.pb-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  border-top: 1px solid #111111;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.pb-header-container {
  max-width: 1360px;
  min-height: 124px;
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 54px;
  position: relative;
}

.pb-desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pb-left-nav ul {
  justify-content: flex-start;
}

.pb-right-nav ul {
  justify-content: flex-end;
}

.pb-desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #101010;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.35s ease;
}

.pb-desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: #d7194b;
  border-radius: 20px;
  transition: width 0.35s ease;
}

.pb-desktop-nav a:hover,
.pb-desktop-nav a.active {
  color: #d7194b;
}

.pb-desktop-nav a:hover::after,
.pb-desktop-nav a.active::after {
  width: 100%;
}

.pb-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pb-logo img {
  width: 155px;
  height: auto;
  display: block;
  object-fit: contain;
}

.pb-contact-btn {
  padding: 12px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d7194b, #0074ad);
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 28px rgba(0, 116, 173, 0.22);
}

.pb-contact-btn::after {
  display: none;
}

.pb-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(215, 25, 75, 0.24);
}

.pb-mobile-menu-btn,
.pb-mobile-call {
  display: none;
}


/* =========================
   Mobile Sidebar CSS
========================= */

.pb-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 28, 0.55);
  backdrop-filter: blur(5px);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.pb-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.pb-mobile-sidebar {
  position: fixed;
  top: 0;
  left: -360px;
  width: 330px;
  max-width: 88%;
  height: 100vh;
  background: #ffffff;
  z-index: 9998;
  padding: 24px 20px;
  box-shadow: 18px 0 50px rgba(0, 0, 0, 0.16);
  transition: left 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.pb-mobile-sidebar.active {
  left: 0;
}

.pb-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(0, 116, 173, 0.16);
}

.pb-sidebar-logo img {
  width: 132px;
  height: auto;
  display: block;
}

.pb-sidebar-close {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #eef7fc;
  color: #d7194b;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pb-sidebar-close:hover {
  background: #d7194b;
  color: #ffffff;
  transform: rotate(90deg);
}

.pb-mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pb-mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 16px;
  border-radius: 14px;
  color: #101010;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pb-mobile-nav a:hover,
.pb-mobile-nav a.active {
  background: #eef7fc;
  color: #d7194b;
  transform: translateX(5px);
}

.pb-mobile-contact-btn {
  justify-content: center;
  margin-top: 8px;
  background: linear-gradient(135deg, #d7194b, #0074ad) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 26px rgba(0, 116, 173, 0.22);
}


/* =========================
   Header Responsive CSS
========================= */

@media (max-width: 1250px) {
  .pb-header-container {
    gap: 32px;
    padding: 0 26px;
  }

  .pb-desktop-nav ul {
    gap: 17px;
  }

  .pb-desktop-nav a {
    font-size: 14px;
  }

  .pb-logo img {
    width: 145px;
  }

  .pb-contact-btn {
    padding: 11px 20px;
  }
}

@media (max-width: 991px) {
  .pb-header-container {
    max-width: 1360px;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
  }

  .pb-desktop-nav {
    display: none;
  }

  .pb-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .pb-logo img {
    width: 142px;
  }

  .pb-mobile-menu-btn {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .pb-mobile-menu-btn span {
    display: block;
    height: 3px;
    background: #0074ad;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .pb-mobile-menu-btn span:nth-child(1) {
    width: 32px;
  }

  .pb-mobile-menu-btn span:nth-child(2) {
    width: 24px;
  }

  .pb-mobile-menu-btn span:nth-child(3) {
    width: 16px;
  }

  .pb-mobile-menu-btn:hover span {
    background: #d7194b;
  }

  .pb-mobile-menu-btn.active span:nth-child(1) {
    width: 28px;
    transform: translateY(9px) rotate(45deg);
  }

  .pb-mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .pb-mobile-menu-btn.active span:nth-child(3) {
    width: 28px;
    transform: translateY(-9px) rotate(-45deg);
  }

  .pb-mobile-call {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d7194b, #0074ad);
    box-shadow: 0 12px 26px rgba(0, 116, 173, 0.22);
    transition: all 0.35s ease;
  }

  .pb-mobile-call svg {
    width: 23px;
    height: 23px;
    fill: #ffffff;
  }

  .pb-mobile-call:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 15px 34px rgba(215, 25, 75, 0.26);
  }
}

@media (max-width: 575px) {
  .pb-header-container {
    min-height: 76px;
    padding: 0 16px;
  }

  .pb-logo img {
    width: 125px;
  }

  .pb-mobile-menu-btn {
    left: 16px;
    width: 38px;
    height: 38px;
  }

  .pb-mobile-menu-btn span:nth-child(1) {
    width: 29px;
  }

  .pb-mobile-menu-btn span:nth-child(2) {
    width: 22px;
  }

  .pb-mobile-menu-btn span:nth-child(3) {
    width: 15px;
  }

  .pb-mobile-call {
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .pb-mobile-call svg {
    width: 21px;
    height: 21px;
  }

  .pb-mobile-sidebar {
    width: 292px;
    padding: 22px 16px;
  }

  .pb-sidebar-logo img {
    width: 118px;
  }

  .pb-mobile-nav a {
    min-height: 46px;
    font-size: 14px;
    padding: 12px 14px;
  }
}



/* =========================
   Footer CSS
========================= */

.pb-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.65), transparent 28%),
    linear-gradient(135deg, #c7ecff 0%, #aee0fa 48%, #bfeeff 100%);
  color: #07131c;
}

.pb-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0, 116, 173, 0.12);
  filter: blur(2px);
}

.pb-footer::after {
  content: "";
  position: absolute;
  left: -130px;
  bottom: 40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(215, 25, 75, 0.08);
  filter: blur(2px);
}

.pb-footer-main {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 64px 34px 58px;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr 1.15fr;
  gap: 70px;
}

.pb-footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.pb-footer-logo img {
  width: 158px;
  height: auto;
  display: block;
}

.pb-footer-brand p {
  max-width: 285px;
  font-size: 15px;
  line-height: 1.55;
  color: #0c1d29;
}

.pb-footer h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
  color: #06121c;
}

.pb-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 36px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, #d7194b, #0074ad);
}

.pb-footer-col ul,
.pb-footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pb-footer-col a {
  position: relative;
  display: inline-flex;
  color: #07131c;
  font-size: 15px;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.pb-footer-col a::before {
  content: "";
  width: 0;
  height: 2px;
  margin-top: 8px;
  margin-right: 0;
  border-radius: 20px;
  background: #d7194b;
  transition: all 0.3s ease;
}

.pb-footer-col a:hover {
  color: #d7194b;
  transform: translateX(5px);
}

.pb-footer-col a:hover::before {
  width: 14px;
  margin-right: 8px;
}

.pb-footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pb-footer-contact li span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 22px rgba(0, 80, 125, 0.08);
  transition: all 0.3s ease;
}

.pb-footer-contact li svg {
  width: 18px;
  height: 18px;
  fill: #0074ad;
  transition: all 0.3s ease;
}

.pb-footer-contact li:hover span {
  background: #ffffff;
  transform: translateY(-3px);
}

.pb-footer-contact li:hover svg {
  fill: #d7194b;
}

.pb-footer-contact a,
.pb-footer-contact p {
  color: #07131c;
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.pb-footer-contact a:hover {
  color: #d7194b;
}

.pb-footer-social {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
}

.pb-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 24px rgba(0, 80, 125, 0.08);
  transition: all 0.35s ease;
}

.pb-footer-social a svg {
  width: 16px;
  height: 16px;
  fill: #07131c;
  transition: all 0.35s ease;
}

.pb-footer-social a:hover {
  background: linear-gradient(135deg, #d7194b, #0074ad);
  transform: translateY(-5px) rotate(6deg);
  box-shadow: 0 16px 32px rgba(0, 116, 173, 0.22);
}

.pb-footer-social a:hover svg {
  fill: #ffffff;
}

.pb-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #d7194b, #0074ad);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 116, 173, 0.22);
  transition: all 0.35s ease;
}

.pb-footer-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(215, 25, 75, 0.26);
}

.pb-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(7, 19, 28, 0.28);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.pb-footer-bottom-inner {
  max-width: 1360px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pb-footer-bottom p,
.pb-footer-bottom a {
  font-size: 14px;
  color: #07131c;
}

.pb-footer-bottom div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pb-footer-bottom a {
  position: relative;
  transition: color 0.3s ease;
}

.pb-footer-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #d7194b;
  transition: width 0.3s ease;
}

.pb-footer-bottom a:hover {
  color: #d7194b;
}

.pb-footer-bottom a:hover::after {
  width: 100%;
}


/* =========================
   Footer Animation CSS
========================= */

.pb-footer-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.75s ease;
}

.pb-footer-animate.pb-show {
  opacity: 1;
  transform: translateY(0);
}

.pb-footer-animate:nth-child(1) {
  transition-delay: 0.05s;
}

.pb-footer-animate:nth-child(2) {
  transition-delay: 0.15s;
}

.pb-footer-animate:nth-child(3) {
  transition-delay: 0.25s;
}

.pb-footer-animate:nth-child(4) {
  transition-delay: 0.35s;
}


/* =========================
   Footer Responsive CSS
========================= */

@media (max-width: 1199px) {
  .pb-footer-main {
    gap: 42px;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.1fr;
  }
}

@media (max-width: 991px) {
  .pb-footer-main {
    padding: 56px 26px 48px;
    grid-template-columns: 1fr 1fr;
    gap: 42px 50px;
  }

  .pb-footer-brand p {
    max-width: 100%;
  }

  .pb-footer-bottom-inner {
    padding: 22px 26px;
    min-height: auto;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .pb-footer-main {
    padding: 46px 18px 40px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pb-footer-logo img {
    width: 142px;
  }

  .pb-footer h3 {
    font-size: 18px;
  }

  .pb-footer-brand p,
  .pb-footer-col a,
  .pb-footer-contact a,
  .pb-footer-contact p {
    font-size: 14px;
  }

  .pb-footer-social {
    gap: 9px;
  }

  .pb-footer-social a {
    width: 36px;
    height: 36px;
  }

  .pb-footer-bottom-inner {
    padding: 20px 18px;
    gap: 14px;
  }

  .pb-footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .pb-footer-bottom p,
  .pb-footer-bottom a {
    font-size: 13px;
  }
}



/* =========================
   Footer Big Text CSS
========================= */

.pb-footer-big-text-section {
  position: relative;
  width: 100%;
  height: 270px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -1px;
}

.pb-footer-big-text-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.88) 62%,
    #ffffff 100%
  );
  z-index: 2;
  pointer-events: none;
}

.pb-footer-big-text-wrap {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 34px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.pb-footer-big-text {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  font-size: clamp(105px, 15vw, 205px);
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: clamp(3px, 0.75vw, 10px);
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;

  background: linear-gradient(
    90deg,
    #d7194b 0%,
    #d7194b 34%,
    #8b225a 46%,
    #0074ad 62%,
    #005d99 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  opacity: 0;
  transform: translateY(45px) scale(0.94);
  filter: blur(4px);

  -webkit-text-stroke: 1px rgba(0, 116, 173, 0.08);
  text-shadow:
    0 20px 50px rgba(0, 116, 173, 0.10),
    0 8px 26px rgba(215, 25, 75, 0.08);

  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.82) 42%,
    rgba(0, 0, 0, 0.18) 86%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.82) 42%,
    rgba(0, 0, 0, 0.18) 86%,
    rgba(0, 0, 0, 0) 100%
  );

  transition:
    opacity 1.1s ease,
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.1s ease;
}

.pb-footer-big-text::before {
  content: "PROBITUS";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 255, 255, 0.8) 48%,
    transparent 60%,
    transparent 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateX(-130%);
  animation: pbFooterBigTextShine 5s ease-in-out infinite;
  animation-delay: 1.2s;
  pointer-events: none;
}

.pb-footer-big-text.pb-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes pbFooterBigTextShine {
  0% {
    transform: translateX(-130%);
  }

  45% {
    transform: translateX(130%);
  }

  100% {
    transform: translateX(130%);
  }
}


/* =========================
   Footer Big Text Responsive CSS
========================= */

@media (max-width: 991px) {
  .pb-footer-big-text-section {
    height: 210px;
  }

  .pb-footer-big-text-wrap {
    padding: 0 26px;
  }

  .pb-footer-big-text {
    font-size: clamp(82px, 18vw, 145px);
    letter-spacing: 5px;
  }
}

@media (max-width: 575px) {
  .pb-footer-big-text-section {
    height: 90px;
  }

  .pb-footer-big-text-wrap {
    padding: 0 0px;
  }

  .pb-footer-big-text {
    font-size: clamp(52px, 18vw, 88px);
    letter-spacing: 2px;
    line-height: 0.9;
    font-size:71px;
  }
}



/* =========================
   Contact Section CSS
========================= */

.pb-contact-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0 115px;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 116, 173, 0.08), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(215, 25, 75, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fdff 100%);
}

.pb-contact-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 80px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(0, 116, 173, 0.1);
  filter: blur(4px);
}

.pb-contact-section::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: 80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(215, 25, 75, 0.08);
  filter: blur(4px);
}

.pb-contact-bg-text {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(74px, 13vw, 170px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 10px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 116, 173, 0.08);
  background: linear-gradient(90deg, rgba(215, 25, 75, 0.08), rgba(0, 116, 173, 0.09));
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

.pb-contact-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 82px;
}

.pb-contact-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(0, 116, 173, 0.09);
  color: #0074ad;
  font-size: 14px;
  font-weight: 700;
}

.pb-contact-subtitle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7194b;
  box-shadow: 0 0 0 6px rgba(215, 25, 75, 0.12);
}

.pb-contact-content h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 900;
  color: #07131c;
}

/* =========================
   Contact Heading Bug Fix
========================= */

.pb-contact-content h1,
.pb-contact-title {
  max-width: 720px;
  margin: 0 0 22px;
  padding: 0;
  font-size: clamp(46px, 5.2vw, 65px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 900;
  color: #07131c;
  overflow: visible;
}

.pb-contact-title span,
.pb-contact-title strong {
  display: block;
  line-height: 1.12;
  overflow: visible;
}

.pb-contact-title span {
  background: linear-gradient(
    90deg,
    #d7194b 0%,
    #a22b69 42%,
    #0074ad 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pb-contact-title strong {
  color: #07131c;
  font-weight: 900;
}

.pb-contact-bg-text {
  z-index: 0;
  top: 12px;
  opacity: 0.55;
}

.pb-contact-container {
  z-index: 2;
}


/* =========================
   Contact Heading Responsive Fix
========================= */

@media (max-width: 1199px) {
  .pb-contact-content h1,
  .pb-contact-title {
    font-size: clamp(44px, 5.5vw, 62px);
    line-height: 1.16;
  }

  .pb-contact-title span,
  .pb-contact-title strong {
    line-height: 1.16;
  }
}

@media (max-width: 991px) {
  .pb-contact-content h1,
  .pb-contact-title {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(42px, 8vw, 60px);
    line-height: 1.18;
    letter-spacing: -1.4px;
  }

  .pb-contact-title span,
  .pb-contact-title strong {
    line-height: 1.18;
  }
}

@media (max-width: 575px) {
  .pb-contact-content h1,
  .pb-contact-title {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.18;
    letter-spacing: -1px;
    margin-bottom: 18px;
  }

  .pb-contact-title span,
  .pb-contact-title strong {
    line-height: 1.18;
  }

  .pb-contact-bg-text {
    top: 14px;
    font-size: 54px;
    opacity: 0.38;
  }
}

.pb-contact-desc {
  max-width: 620px;
  margin-bottom: 34px;
  color: #263743;
  font-size: 18px;
  line-height: 1.55;
}

.pb-contact-info-list {
  display: grid;
  gap: 17px;
  margin-bottom: 34px;
}

.pb-contact-info-card {
  max-width: 555px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 116, 173, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(0, 80, 125, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.pb-contact-info-card:hover {
  transform: translateX(8px);
  border-color: rgba(215, 25, 75, 0.22);
  box-shadow: 0 22px 48px rgba(0, 116, 173, 0.11);
}

.pb-contact-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(215, 25, 75, 0.12), rgba(0, 116, 173, 0.14));
  transition: all 0.35s ease;
}

.pb-contact-info-card:hover .pb-contact-icon {
  background: linear-gradient(135deg, #d7194b, #0074ad);
  transform: rotate(-5deg) scale(1.05);
}

.pb-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: #0074ad;
  transition: all 0.35s ease;
}

.pb-contact-info-card:hover .pb-contact-icon svg {
  fill: #ffffff;
}

.pb-contact-info-card h3 {
  margin-bottom: 5px;
  color: #07131c;
  font-size: 16px;
  font-weight: 800;
}

.pb-contact-info-card a,
.pb-contact-info-card p {
  color: #33434f;
  font-size: 15px;
  line-height: 1.4;
}

.pb-contact-info-card a {
  transition: color 0.3s ease;
}

.pb-contact-info-card a:hover {
  color: #d7194b;
}

.pb-contact-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================
   Contact Button Fix CSS
========================= */

.pb-contact-action {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 10px 22px 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 116, 173, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #07131c;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0, 80, 125, 0.08);
  transition: all 0.35s ease;
}

.pb-contact-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #d7194b, #0074ad);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pb-contact-action-icon,
.pb-contact-action-label {
  position: relative;
  z-index: 2;
}

.pb-contact-action-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef8ff;
  transition: all 0.35s ease;
}

.pb-contact-action-icon svg {
  width: 18px;
  height: 18px;
  fill: #0074ad;
  transition: all 0.35s ease;
}

.pb-contact-action-label {
  color: inherit;
  white-space: nowrap;
  transition: color 0.35s ease;
}

.pb-contact-action:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(215, 25, 75, 0.18);
}

.pb-contact-action:hover::before {
  opacity: 1;
}

.pb-contact-action:hover .pb-contact-action-icon {
  background: rgba(255, 255, 255, 0.22);
}

.pb-contact-action:hover .pb-contact-action-icon svg {
  fill: #ffffff;
}

.pb-whatsapp-action {
  border-color: rgba(0, 116, 173, 0.22);
}


/* =========================
   Contact Form CSS
========================= */

.pb-contact-form-wrap {
  position: relative;
  padding: 1px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(215, 25, 75, 0.55), rgba(0, 116, 173, 0.55));
  box-shadow: 0 30px 70px rgba(0, 80, 125, 0.18);
}

.pb-form-glow {
  position: absolute;
  inset: -30px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(215, 25, 75, 0.18), rgba(0, 116, 173, 0.2));
  filter: blur(28px);
  z-index: -1;
  animation: pbFormGlow 5s ease-in-out infinite;
}

.pb-contact-form {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 33px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(235, 248, 255, 0.95)),
    linear-gradient(180deg, #ffffff, #d8f1ff);
}

.pb-contact-form::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(0, 116, 173, 0.12);
}

.pb-contact-form::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(215, 25, 75, 0.09);
}

.pb-form-heading,
.pb-form-row,
.pb-form-group,
.pb-submit-btn {
  position: relative;
  z-index: 2;
}

.pb-form-heading {
  margin-bottom: 28px;
}

.pb-form-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: #0074ad;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pb-form-heading h2 {
  margin-bottom: 8px;
  color: #07131c;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 900;
}

.pb-form-heading p {
  color: #40505c;
  font-size: 15px;
  line-height: 1.5;
}

.pb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pb-form-group {
  position: relative;
  margin-bottom: 20px;
}

.pb-form-group input,
.pb-form-group textarea {
  width: 100%;
  border: 1px solid rgba(7, 19, 28, 0.18);
  outline: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: #07131c;
  font-size: 15px;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px transparent;
  transition: all 0.35s ease;
}

.pb-form-group input {
  height: 58px;
  padding: 18px 17px 8px;
}

.pb-form-group textarea {
  height: 135px;
  resize: none;
  padding: 22px 17px 12px;
}

.pb-form-group label {
  position: absolute;
  left: 17px;
  top: 18px;
  color: #60727f;
  font-size: 14px;
  pointer-events: none;
  transition: all 0.28s ease;
}

.pb-form-group input:focus,
.pb-form-group textarea:focus {
  border-color: rgba(0, 116, 173, 0.78);
  background: #ffffff;
  box-shadow:
    0 12px 30px rgba(0, 116, 173, 0.12),
    inset 0 0 0 1px rgba(0, 116, 173, 0.35);
}

.pb-form-group input:focus + label,
.pb-form-group input:not(:placeholder-shown) + label,
.pb-form-group textarea:focus + label,
.pb-form-group textarea:not(:placeholder-shown) + label {
  top: 7px;
  font-size: 11px;
  font-weight: 800;
  color: #0074ad;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pb-submit-btn {
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #d7194b 0%, #0074ad 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0, 116, 173, 0.24);
  transition: all 0.35s ease;
}

.pb-submit-btn svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  transition: transform 0.35s ease;
}

.pb-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(215, 25, 75, 0.25);
}

.pb-submit-btn:hover svg {
  transform: translateX(5px);
}

@keyframes pbFormGlow {
  0%, 100% {
    opacity: 0.75;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}


/* =========================
   Contact Reveal Animation CSS
========================= */

.pb-contact-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.pb-contact-reveal.pb-show {
  opacity: 1;
  transform: translateY(0);
}

.pb-contact-reveal:nth-child(2) {
  transition-delay: 0.15s;
}


/* =========================
   Contact Responsive CSS
========================= */

@media (max-width: 1199px) {
  .pb-contact-container {
    gap: 52px;
  }

  .pb-contact-content h1 {
    font-size: clamp(40px, 5vw, 58px);
  }

  .pb-contact-form {
    padding: 34px;
  }
}

@media (max-width: 991px) {
  .pb-contact-section {
    padding: 82px 0 90px;
  }

  .pb-contact-container {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 0 26px;
  }

  .pb-contact-content {
    text-align: center;
  }

  .pb-contact-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .pb-contact-content h1,
  .pb-contact-desc,
  .pb-contact-info-card {
    max-width: 100%;
  }

  .pb-contact-info-card {
    text-align: left;
  }

  .pb-contact-buttons {
    justify-content: center;
  }

  .pb-contact-form-wrap {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .pb-contact-section {
    padding: 68px 0 72px;
  }

  .pb-contact-container {
    padding: 0 16px;
    gap: 38px;
  }

  .pb-contact-bg-text {
    top: 20px;
    font-size: 56px;
    letter-spacing: 3px;
  }

  .pb-contact-content h1 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .pb-contact-desc {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .pb-contact-info-card {
    padding: 14px;
    border-radius: 18px;
  }

  .pb-contact-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .pb-contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .pb-contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .pb-contact-action {
    width: 100%;
    justify-content: center;
  }

  .pb-contact-form {
    padding: 26px 18px;
    border-radius: 26px;
  }

  .pb-contact-form-wrap {
    border-radius: 27px;
  }

  .pb-form-heading h2 {
    font-size: 25px;
  }

  .pb-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pb-form-group {
    margin-bottom: 17px;
  }

  .pb-form-group input {
    height: 56px;
  }

  .pb-form-group textarea {
    height: 125px;
  }

  .pb-submit-btn {
    min-height: 56px;
    font-size: 16px;
  }
}

/* =========================
   Premium Hero Section CSS
========================= */

.pb-hero-premium {
  position: relative;
  overflow: hidden;
  padding: 52px 0 90px;
  background:
    radial-gradient(circle at 10% 14%, rgba(215, 25, 75, 0.075), transparent 27%),
    radial-gradient(circle at 88% 18%, rgba(0, 116, 173, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 52%, #ffffff 100%);
}

/* .pb-hero-premium-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 116, 173, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 116, 173, 0.038) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 28%, black, transparent 78%);
  pointer-events: none;
} */

.pb-hero-premium-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(3px);
}

.pb-hero-glow-one {
  width: 300px;
  height: 300px;
  left: -130px;
  top: 110px;
  background: rgba(215, 25, 75, 0.08);
  animation: pbHeroGlowOne 9s ease-in-out infinite;
}

.pb-hero-glow-two {
  width: 420px;
  height: 420px;
  right: -170px;
  top: 135px;
  background: rgba(0, 116, 173, 0.11);
  animation: pbHeroGlowTwo 10s ease-in-out infinite;
}

.pb-hero-premium-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  align-items: center;
  gap: 64px;
}

.pb-hero-premium-content {
  max-width: 680px;
}

.pb-hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 116, 173, 0.085);
  color: #0074ad;
  font-size: 14px;
  font-weight: 800;
  box-shadow:
    inset 0 0 0 1px rgba(0, 116, 173, 0.10),
    0 14px 28px rgba(0, 80, 125, 0.06);
}

.pb-hero-premium-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7194b;
  box-shadow: 0 0 0 7px rgba(215, 25, 75, 0.13);
}

.pb-hero-premium-title {
  margin: 0 0 22px;
  color: #07131c;
  font-size: clamp(48px, 5vw, 65px);
  line-height: 1.08;
  letter-spacing: -2.3px;
  font-weight: 900;
}

.pb-hero-premium-title span {
  display: block;
  background: linear-gradient(90deg, #d7194b 0%, #8d2f68 43%, #0074ad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pb-hero-premium-desc {
  max-width: 650px;
  margin: 0 0 32px;
  color: #354854;
  font-size: 18px;
  line-height: 1.68;
}

.pb-hero-premium-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.pb-hero-premium-btn {
  min-height: 56px;
  padding: 15px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  transition: all 0.35s ease;
}

.pb-hero-btn-primary {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #d7194b 0%, #0074ad 100%);
  box-shadow: 0 18px 38px rgba(0, 116, 173, 0.22);
}

.pb-hero-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.3) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
}

.pb-hero-btn-primary svg,
.pb-hero-btn-primary {
  position: relative;
}

.pb-hero-btn-primary svg {
  z-index: 2;
  width: 21px;
  height: 21px;
  fill: #ffffff;
  transition: transform 0.35s ease;
}

.pb-hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(215, 25, 75, 0.24);
}

.pb-hero-btn-primary:hover::before {
  transform: translateX(130%);
}

.pb-hero-btn-primary:hover svg {
  transform: translateX(5px);
}

.pb-hero-btn-secondary {
  color: #07131c;
  border: 1px solid rgba(0, 116, 173, 0.22);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(0, 80, 125, 0.07);
}

.pb-hero-btn-secondary:hover {
  color: #0074ad;
  background: #ffffff;
  border-color: rgba(0, 116, 173, 0.42);
  transform: translateY(-4px);
}

.pb-hero-premium-stats {
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0, 116, 173, 0.10);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(0, 80, 125, 0.07);
}

.pb-hero-stat-box {
  padding: 18px 18px;
  transition: all 0.35s ease;
}

.pb-hero-stat-box:not(:last-child) {
  border-right: 1px solid rgba(0, 116, 173, 0.10);
}

.pb-hero-stat-box:hover {
  background: rgba(0, 116, 173, 0.055);
}

.pb-hero-stat-box strong {
  display: block;
  margin-bottom: 5px;
  color: #07131c;
  font-size: 18px;
  font-weight: 900;
}

.pb-hero-stat-box span {
  display: block;
  color: #5c6f7b;
  font-size: 13px;
  line-height: 1.35;
}


/* =========================
   Premium Hero Image CSS
========================= */

.pb-hero-premium-visual {
  width: 100%;
}

.pb-hero-image-shell {
  position: relative;
  width: 100%;
  max-width: 640px;
  min-height: 560px;
  margin-left: auto;
  padding: 18px;
  border-radius: 38px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(215, 25, 75, 0.34), rgba(0, 116, 173, 0.48)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 34px 80px rgba(0, 80, 125, 0.16);
  transition: transform 0.25s ease;
}

.pb-hero-image-shell::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(215, 25, 75, 0.12), rgba(0, 116, 173, 0.16));
  filter: blur(26px);
  animation: pbHeroImageGlow 5.5s ease-in-out infinite;
}

.pb-hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 524px;
}

.pb-hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.30), transparent 42%),
    linear-gradient(180deg, transparent 55%, rgba(0, 116, 173, 0.12));
  pointer-events: none;
}

.pb-hero-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.pb-hero-image-shell:hover .pb-hero-image-frame img {
  transform: scale(1.045);
}

.pb-hero-image-spotlight {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background: radial-gradient(circle at var(--hero-x, 50%) var(--hero-y, 50%), rgba(255, 255, 255, 0.28), transparent 34%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pb-hero-image-shell:hover .pb-hero-image-spotlight {
  opacity: 1;
}

.pb-hero-float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
  max-width: 285px;
  padding: 15px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 46px rgba(0, 80, 125, 0.14);
  animation: pbHeroFloatCard 4.8s ease-in-out infinite;
}

.pb-hero-float-card-one {
  top: 38px;
  left: 38px;
}

.pb-hero-float-card-two {
  right: 38px;
  bottom: 38px;
  animation-delay: 0.8s;
}

.pb-hero-float-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d7194b, #0074ad);
  box-shadow: 0 12px 22px rgba(0, 116, 173, 0.20);
}

.pb-hero-float-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.pb-hero-float-card strong {
  display: block;
  margin-bottom: 4px;
  color: #07131c;
  font-size: 15px;
  font-weight: 900;
}

.pb-hero-float-card p {
  margin: 0;
  color: #61727d;
  font-size: 13px;
  line-height: 1.35;
}

.pb-hero-circle-text {
  position: absolute;
  right: -18px;
  top: -18px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d7194b, #0074ad);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 116, 173, 0.20);
  animation: pbHeroCirclePulse 3.6s ease-in-out infinite;
}

.pb-hero-circle-text span {
  max-width: 60px;
  text-align: center;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* =========================
   Hero Product Strip CSS
========================= */

.pb-hero-product-strip {
  position: relative;
  z-index: 3;
  max-width: 1360px;
  margin: 60px auto 0;
  padding: 36px 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.17), transparent 28%),
    linear-gradient(135deg, #0f73aa 0%, #075f99 100%);
  box-shadow: 0 28px 64px rgba(0, 80, 125, 0.18);
  display: grid;
  grid-template-columns: 0.88fr 1.45fr;
  align-items: center;
  gap: 34px;
  overflow: hidden;
}

.pb-hero-product-strip::before {
  content: "";
  position: absolute;
  right: 10%;
  top: -105px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.pb-hero-product-heading {
  position: relative;
  z-index: 2;
}

.pb-hero-product-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.pb-hero-product-heading h2 {
  max-width: 420px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.pb-hero-product-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pb-hero-product-card {
  min-height: 168px;
  padding: 22px 16px;
  border-radius: 22px;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
  transition: all 0.35s ease;
}

.pb-hero-product-card span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.13);
  transition: all 0.35s ease;
}

.pb-hero-product-card svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.pb-hero-product-card strong {
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.pb-hero-product-card small {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.35;
}

.pb-hero-product-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  color: #075f99;
  box-shadow: 0 24px 44px rgba(0, 42, 76, 0.22);
}

.pb-hero-product-card:hover span {
  background: linear-gradient(135deg, #d7194b, #0074ad);
  transform: rotate(-5deg) scale(1.06);
}

.pb-hero-product-card:hover strong {
  color: #075f99;
}

.pb-hero-product-card:hover small {
  color: #5d6f7b;
}


/* =========================
   Hero Animation CSS
========================= */

.pb-hero-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.pb-hero-reveal.pb-show {
  opacity: 1;
  transform: translateY(0);
}

.pb-hero-premium-content .pb-hero-reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.pb-hero-premium-content .pb-hero-reveal:nth-child(2) {
  transition-delay: 0.15s;
}

.pb-hero-premium-content .pb-hero-reveal:nth-child(3) {
  transition-delay: 0.25s;
}

.pb-hero-premium-content .pb-hero-reveal:nth-child(4) {
  transition-delay: 0.35s;
}

.pb-hero-premium-content .pb-hero-reveal:nth-child(5) {
  transition-delay: 0.45s;
}

@keyframes pbHeroFloatCard {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes pbHeroImageGlow {
  0%, 100% {
    opacity: 0.68;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes pbHeroCirclePulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes pbHeroGlowOne {
  0%, 100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(18px, 24px);
  }
}

@keyframes pbHeroGlowTwo {
  0%, 100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-22px, 18px);
  }
}


/* =========================
   Hero Responsive CSS
========================= */

@media (max-width: 1199px) {
  .pb-hero-premium-container {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
  }

  .pb-hero-premium-title {
    font-size: clamp(44px, 5vw, 62px);
  }

  .pb-hero-image-shell {
    min-height: 510px;
  }

  .pb-hero-image-frame {
    height: 474px;
  }

  .pb-hero-product-strip {
    margin-left: 26px;
    margin-right: 26px;
  }
}

@media (max-width: 991px) {
  .pb-hero-premium {
    padding: 42px 0 74px;
  }

  .pb-hero-premium-container {
    grid-template-columns: 1fr;
    padding: 0 26px;
    gap: 48px;
  }

  .pb-hero-premium-content {
    max-width: 100%;
    text-align: center;
  }

  .pb-hero-premium-desc {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .pb-hero-premium-actions {
    justify-content: center;
  }

  .pb-hero-premium-stats {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .pb-hero-image-shell {
    max-width: 720px;
    margin: 0 auto;
  }

  .pb-hero-product-strip {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 48px;
    padding: 34px 26px;
  }

  .pb-hero-product-heading h2 {
    max-width: 760px;
    margin: 0 auto;
  }

  .pb-hero-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .pb-hero-premium-title {
    font-size: clamp(40px, 10vw, 56px);
    line-height: 1.12;
    letter-spacing: -1.4px;
  }

  .pb-hero-premium-desc {
    font-size: 16px;
  }

  .pb-hero-image-shell {
    min-height: auto;
    border-radius: 30px;
    padding: 14px;
  }

  .pb-hero-image-frame {
    height: 380px;
    border-radius: 22px;
  }

  .pb-hero-float-card {
    min-width: 210px;
    max-width: 240px;
    padding: 13px 14px;
  }

  .pb-hero-float-card-one {
    top: 26px;
    left: 26px;
  }

  .pb-hero-float-card-two {
    right: 26px;
    bottom: 26px;
  }

  .pb-hero-circle-text {
    width: 76px;
    height: 76px;
    right: -10px;
    top: -10px;
  }
}

@media (max-width: 575px) {
  .pb-hero-premium {
    padding: 34px 0 58px;
  }

  .pb-hero-premium-container {
    padding: 0 16px;
    gap: 36px;
  }

  .pb-hero-premium-badge {
    font-size: 12px;
    padding: 9px 13px;
  }

  .pb-hero-premium-title {
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.14;
    letter-spacing: -1px;
    font-size: 34px;
  }

  .pb-hero-premium-desc {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.62;
  }

  .pb-hero-premium-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 28px;
  }

  .pb-hero-premium-btn {
    width: 100%;
  }

  .pb-hero-premium-stats {
    grid-template-columns: 1fr;
  }

  .pb-hero-stat-box:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(0, 116, 173, 0.10);
  }

  .pb-hero-image-frame {
    height: 285px;
  }

  .pb-hero-float-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-top: 12px;
    animation: none;
  }

  .pb-hero-circle-text {
    display: none;
  }

  .pb-hero-product-strip {
    margin: 36px 16px 0;
    padding: 28px 16px;
    border-radius: 26px;
  }

  .pb-hero-product-heading h2 {
    font-size: 26px;
  }

  .pb-hero-product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pb-hero-product-card {
    min-height: 142px;
    padding: 18px 10px;
    border-radius: 18px;
  }

  .pb-hero-product-card span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .pb-hero-product-card strong {
    font-size: 15px;
  }

  .pb-hero-product-card small {
    font-size: 11px;
  }
}



.prb-about-section {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.prb-about-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.10) 0%, rgba(13, 110, 253, 0) 70%);
  border-radius: 50%;
  animation: prbFloatShape 8s ease-in-out infinite;
}

.prb-about-section::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 166, 255, 0.10) 0%, rgba(0, 166, 255, 0) 70%);
  border-radius: 50%;
  animation: prbFloatShape 9s ease-in-out infinite reverse;
}

.prb-about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.prb-about-content {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

.prb-about-image-wrap {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease 0.15s;
}

.prb-about-section.prb-show .prb-about-content,
.prb-about-section.prb-show .prb-about-image-wrap {
  opacity: 1;
  transform: translateY(0);
}

.prb-about-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(13, 110, 253, 0.08);
  color: #0d6efd;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
  border: 1px solid rgba(13, 110, 253, 0.14);
}

.prb-about-title {
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 800;
  color: #081c3a;
  letter-spacing: -1px;
}

.prb-about-text {
  margin: 0;
  max-width: 640px;
  font-size: 20px;
  line-height: 1.75;
  color: #49566b;
}

.prb-about-btn-wrap {
  margin-top: 36px;
}

.prb-about-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d6efd 0%, #0056d6 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(13, 110, 253, 0.28);
  transition: all 0.35s ease;
}

.prb-about-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-20deg);
  transition: all 0.7s ease;
}

.prb-about-btn:hover::before {
  left: 130%;
}

.prb-about-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(13, 110, 253, 0.34);
}

.prb-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transition: all 0.3s ease;
}

.prb-about-btn:hover .prb-btn-icon {
  transform: translateX(4px);
  background: rgba(255,255,255,0.22);
}

.prb-about-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 55, 110, 0.18);
  transform-style: preserve-3d;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.prb-about-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 75px rgba(15, 55, 110, 0.24);
}

.prb-about-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.prb-about-image-card:hover img {
  transform: scale(1.06);
}

.prb-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), transparent 40%, rgba(255,255,255,0.03));
  pointer-events: none;
}

.prb-floating-box {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 110, 253, 0.08);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(10, 51, 112, 0.14);
  max-width: 220px;
  transition: all 0.35s ease;
}

.prb-floating-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(10, 51, 112, 0.18);
}

.prb-floating-box h4 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #0a2247;
  font-weight: 700;
}

.prb-floating-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #5b6778;
}

.prb-box-one {
  top: 26px;
  left: 26px;
  animation: prbFloatCard 4.5s ease-in-out infinite;
}

.prb-box-two {
  right: 26px;
  bottom: 26px;
  animation: prbFloatCard 5s ease-in-out infinite;
}

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

@keyframes prbFloatShape {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(20px) translateX(10px);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .prb-about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prb-about-text {
    max-width: 100%;
  }

  .prb-about-image-card img {
    height: 460px;
  }
}

@media (max-width: 767px) {
  .prb-about-section {
    padding: 80px 16px;
  }

  .prb-about-title {
    font-size: 34px;
  }

  .prb-about-text {
    font-size: 17px;
    line-height: 1.7;
  }

  .prb-about-image-card img {
    height: 360px;
  }

  .prb-floating-box {
    max-width: 180px;
    padding: 14px;
  }

  .prb-box-one {
    top: 15px;
    left: 15px;
  }

  .prb-box-two {
    right: 15px;
    bottom: 15px;
  }
}



/* =========================
   Product Categories CSS
========================= */

.pb-categories-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 25, 75, 0.055), transparent 25%),
    radial-gradient(circle at 88% 14%, rgba(0, 116, 173, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 48%, #ffffff 100%);
}

.pb-categories-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 116, 173, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 116, 173, 0.035) 1px, transparent 1px);
  /* background-size: 42px 42px; */
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
  pointer-events: none;
}

.pb-categories-bg-text {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(70px, 13vw, 170px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 116, 173, 0.08);
  background: linear-gradient(90deg, rgba(215, 25, 75, 0.07), rgba(0, 116, 173, 0.09));
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

.pb-categories-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 34px;
}

.pb-categories-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.pb-categories-heading span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(0, 116, 173, 0.085);
  color: #0074ad;
  font-size: 14px;
  font-weight: 800;
}

.pb-categories-heading span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7194b;
  box-shadow: 0 0 0 6px rgba(215, 25, 75, 0.12);
}

.pb-categories-heading h2 {
  margin-bottom: 14px;
  color: #07131c;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1.6px;
}

.pb-categories-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: #40515d;
  font-size: 17px;
  line-height: 1.6;
}


/* =========================
   Product Categories Grid CSS
========================= */

.pb-categories-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.pb-category-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.75), transparent 26%),
    linear-gradient(135deg, #c8edff 0%, #aee2fb 100%);
  border: 1px solid rgba(0, 116, 173, 0.10);
  box-shadow: 0 20px 45px rgba(0, 80, 125, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.pb-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(215, 25, 75, 0.08), transparent 40%),
    linear-gradient(315deg, rgba(0, 116, 173, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.pb-category-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 116, 173, 0.24);
  box-shadow: 0 34px 70px rgba(0, 80, 125, 0.16);
}

.pb-category-card:hover::before {
  opacity: 1;
}

.pb-category-small {
  grid-column: span 3;
}

.pb-category-wide {
  grid-column: span 6;
}

.pb-category-content {
  position: relative;
  z-index: 4;
  padding: 32px 30px;
}

.pb-category-content p {
  margin-bottom: 7px;
  color: #a0144a;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.pb-category-content h3 {
  max-width: 320px;
  color: #07131c;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.pb-category-h3{
    font-size: 24px !important;

}
.pb-category-img {
  position: absolute;
  z-index: 3;
  display: block;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: drop-shadow(0 18px 24px rgba(0, 80, 125, 0.14));
}

.pb-category-card:hover .pb-category-img {
  transform: translateY(-10px) scale(1.045);
  filter: drop-shadow(0 26px 30px rgba(0, 80, 125, 0.20));
}


/* =========================
   Individual Product Image Position
========================= */

.pb-cat-tablets .pb-category-img {
  width: 78%;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
}

.pb-cat-tablets:hover .pb-category-img {
  transform: translateX(-50%) translateY(-10px) scale(1.045);
}

.pb-cat-capsules .pb-category-img {
  width: 86%;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
}

.pb-cat-capsules:hover .pb-category-img {
  transform: translateX(-50%) translateY(-10px) scale(1.045);
}

.pb-cat-syrups .pb-category-img {
  width: 55%;
  right: 28px;
  bottom: 42px;
}

.pb-cat-injections .pb-category-img {
  width: 62%;
  right: 28px;
  bottom: 20px;
}

.pb-cat-nutraceuticals .pb-category-img {
  width: 82%;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

.pb-cat-nutraceuticals:hover .pb-category-img {
  transform: translateX(-50%) translateY(-10px) scale(1.045);
}

.pb-cat-healthcare .pb-category-img {
  width: 78%;
  right: 18px;
  bottom: 22px;
}


/* =========================
   Product Button CSS
========================= */

.pb-category-btn {
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin-top: 26px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #d7194b 0%, #0074ad 100%);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(0, 116, 173, 0.20);
  transition: all 0.35s ease;
}

.pb-category-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.30) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.75s ease;
}

.pb-category-btn svg {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  fill: #ffffff;
  transition: transform 0.35s ease;
}

.pb-category-card:hover .pb-category-btn {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(215, 25, 75, 0.22);
}

.pb-category-card:hover .pb-category-btn::before {
  transform: translateX(130%);
}

.pb-category-card:hover .pb-category-btn svg {
  transform: translateX(4px);
}


/* =========================
   Premium Leaf Accent CSS
========================= */

.pb-category-leaf {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 92px;
  z-index: 2;
  opacity: 0.9;
}

.pb-category-leaf::before,
.pb-category-leaf::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -4px;
  width: 54px;
  height: 88px;
  border-radius: 80px 0 80px 0;
  transform-origin: bottom center;
}

.pb-category-leaf::before {
  background: linear-gradient(145deg, #d7194b 0%, #68b8dd 72%);
  transform: rotate(38deg);
}

.pb-category-leaf::after {
  left: 38px;
  background: linear-gradient(145deg, #0074ad 0%, #b9e8ff 80%);
  transform: rotate(18deg);
  opacity: 0.88;
}

.pb-category-card:hover .pb-category-leaf {
  animation: pbLeafPulse 1.4s ease-in-out infinite;
}


/* =========================
   Shine Effect CSS
========================= */

.pb-category-shine {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.32) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.85s ease;
}

.pb-category-card:hover .pb-category-shine {
  transform: translateX(120%);
}


/* =========================
   Reveal Animation CSS
========================= */

.pb-cat-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.pb-cat-reveal.pb-show {
  opacity: 1;
  transform: translateY(0);
}

.pb-categories-grid .pb-cat-reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.pb-categories-grid .pb-cat-reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.pb-categories-grid .pb-cat-reveal:nth-child(3) {
  transition-delay: 0.19s;
}

.pb-categories-grid .pb-cat-reveal:nth-child(4) {
  transition-delay: 0.26s;
}

.pb-categories-grid .pb-cat-reveal:nth-child(5) {
  transition-delay: 0.33s;
}

.pb-categories-grid .pb-cat-reveal:nth-child(6) {
  transition-delay: 0.40s;
}

@keyframes pbLeafPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}


/* =========================
   Product Categories Responsive CSS
========================= */

@media (max-width: 1199px) {
  .pb-categories-grid {
    gap: 22px;
  }

  .pb-category-card {
    min-height: 310px;
  }

  .pb-category-content {
    padding: 28px 24px;
  }

  .pb-category-content h3 {
    font-size: 28px;
  }

  .pb-cat-syrups .pb-category-img {
    width: 58%;
  }

  .pb-cat-injections .pb-category-img {
    width: 64%;
  }
}

@media (max-width: 991px) {
  .pb-categories-section {
    padding: 78px 0 86px;
  }

  .pb-categories-container {
    padding: 0 26px;
  }

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

  .pb-category-small,
  .pb-category-wide {
    grid-column: span 1;
  }

  .pb-category-card {
    min-height: 330px;
  }

  .pb-cat-syrups .pb-category-img,
  .pb-cat-injections .pb-category-img {
    width: 78%;
    right: 20px;
    bottom: 24px;
  }

  .pb-category-btn {
    margin-top: 18px;
  }
}

@media (max-width: 575px) {
  .pb-categories-section {
    padding: 66px 0 70px;
  }

  .pb-categories-bg-text {
    top: 28px;
    font-size: 54px;
    letter-spacing: 3px;
  }

  .pb-categories-container {
    padding: 0 16px;
  }

  .pb-categories-heading {
    margin-bottom: 34px;
  }

  .pb-categories-heading h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .pb-categories-heading p {
    font-size: 15px;
  }

  .pb-categories-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pb-category-card {
    min-height: 300px;
    border-radius: 24px;
  }

  .pb-category-content {
    padding: 24px 22px;
  }

  .pb-category-content p {
    font-size: 14px;
  }

  .pb-category-content h3 {
    font-size: 28px;
  }

  .pb-category-btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .pb-cat-tablets .pb-category-img {
    width: 70%;
    bottom: 32px;
  }

  .pb-cat-capsules .pb-category-img {
    width: 78%;
    bottom: 62px;
  }

  .pb-cat-syrups .pb-category-img,
  .pb-cat-injections .pb-category-img {
    width: 74%;
    right: 16px;
    bottom: 20px;
  }

  .pb-cat-nutraceuticals .pb-category-img {
    width: 72%;
  }

  .pb-cat-healthcare .pb-category-img {
    width: 70%;
  }

  .pb-category-leaf {
    width: 78px;
    height: 78px;
  }
}




/* =========================
   Why Choose Us Section CSS
========================= */

.pb-why-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px;
  background:
    radial-gradient(circle at 10% 18%, rgba(215, 25, 75, 0.05), transparent 25%),
    radial-gradient(circle at 90% 20%, rgba(0, 116, 173, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fdff 48%, #ffffff 100%);
}

.pb-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 116, 173, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 116, 173, 0.03) 1px, transparent 1px);
  /* background-size: 42px 42px; */
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 78%);
  pointer-events: none;
}

.pb-why-bg-text {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(68px, 12vw, 160px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 116, 173, 0.07);
  background: linear-gradient(90deg, rgba(215, 25, 75, 0.07), rgba(0, 116, 173, 0.09));
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

.pb-why-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}


/* =========================
   Left Content CSS
========================= */

.pb-why-left {
  max-width: 560px;
}

.pb-why-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(0, 116, 173, 0.085);
  color: #0074ad;
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(0, 116, 173, 0.09);
}

.pb-why-subtitle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7194b;
  box-shadow: 0 0 0 6px rgba(215, 25, 75, 0.12);
}

.pb-why-title {
  margin: 0 0 18px;
  color: #07131c;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.pb-why-desc {
  margin: 0 0 34px;
  color: #3f505d;
  font-size: 18px;
  line-height: 1.68;
}

.pb-why-image-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 22px;
  border-radius: 34px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(215, 25, 75, 0.26), rgba(0, 116, 173, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 28px 64px rgba(0, 80, 125, 0.12);
}

.pb-why-image-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(215, 25, 75, 0.10), rgba(0, 116, 173, 0.14));
  filter: blur(24px);
}

.pb-why-image-shape {
  position: absolute;
  right: -24px;
  top: -24px;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: linear-gradient(135deg, #d7194b, #0074ad);
  opacity: 0.14;
  transform: rotate(18deg);
}

.pb-why-image {
  width: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0, 80, 125, 0.14));
  animation: pbWhyImageFloat 4.6s ease-in-out infinite;
}


/* =========================
   Right Cards CSS
========================= */

.pb-why-right {
  display: grid;
  gap: 22px;
}

.pb-why-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(245,251,255,0.92) 100%);
  border: 1px solid rgba(0, 116, 173, 0.10);
  box-shadow: 0 18px 38px rgba(0, 80, 125, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.pb-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.34) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.pb-why-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #d7194b 0%, #0074ad 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pb-why-card:hover {
  transform: translateY(-8px) translateX(4px);
  border-color: rgba(0, 116, 173, 0.22);
  box-shadow: 0 28px 52px rgba(0, 80, 125, 0.14);
}

.pb-why-card:hover::before {
  transform: translateX(130%);
}

.pb-why-card:hover::after {
  opacity: 1;
}

.pb-why-card-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(215, 25, 75, 0.10), rgba(0, 116, 173, 0.14));
  transition: all 0.35s ease;
}

.pb-why-card-icon svg {
  width: 28px;
  height: 28px;
  fill: #0074ad;
  transition: all 0.35s ease;
}

.pb-why-card:hover .pb-why-card-icon {
  background: linear-gradient(135deg, #d7194b 0%, #0074ad 100%);
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 16px 28px rgba(0, 116, 173, 0.18);
}

.pb-why-card:hover .pb-why-card-icon svg {
  fill: #ffffff;
}

.pb-why-card-content h3 {
  margin: 0 0 8px;
  color: #07131c;
  font-size: clamp(23px, 2vw, 34px);
  line-height: 1.2;
  font-weight: 900;
}

.pb-why-card-content p {
  margin: 0;
  color: #40515d;
  font-size: 17px;
  line-height: 1.6;
}


/* =========================
   Reveal Animation CSS
========================= */

.pb-why-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.pb-why-reveal.pb-show {
  opacity: 1;
  transform: translateY(0);
}

.pb-why-right .pb-why-reveal:nth-child(1) {
  transition-delay: 0.08s;
}

.pb-why-right .pb-why-reveal:nth-child(2) {
  transition-delay: 0.16s;
}

.pb-why-right .pb-why-reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.pb-why-right .pb-why-reveal:nth-child(4) {
  transition-delay: 0.32s;
}

@keyframes pbWhyImageFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


/* =========================
   Responsive CSS
========================= */

@media (max-width: 1199px) {
  .pb-why-container {
    gap: 42px;
  }

  .pb-why-card {
    padding: 24px 20px;
  }

  .pb-why-card-content h3 {
    font-size: 22px;
  }

  .pb-why-card-content p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .pb-why-section {
    padding: 82px 0 88px;
  }

  .pb-why-container {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 0 26px;
  }

  .pb-why-left {
    max-width: 100%;
    text-align: center;
  }

  .pb-why-desc {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .pb-why-image-wrap {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .pb-why-section {
    padding: 68px 0 72px;
  }

  .pb-why-bg-text {
    top: 24px;
    font-size: 52px;
    letter-spacing: 3px;
  }

  .pb-why-container {
    padding: 0 16px;
    gap: 34px;
  }

  .pb-why-title {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .pb-why-desc {
    font-size: 15px;
    line-height: 1.62;
    margin-bottom: 26px;
  }

  .pb-why-image-wrap {
    padding: 16px;
    border-radius: 24px;
  }

  .pb-why-card {
    padding: 20px 16px;
    gap: 14px;
    border-radius: 18px;
  }

  .pb-why-card-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .pb-why-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .pb-why-card-content h3 {
    font-size: 20px;
  }

  .pb-why-card-content p {
    font-size: 14px;
    line-height: 1.55;
  }
}

/* =========================
   Extra Premium Why Choose Us Animations
========================= */

.pb-why-card {
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform;
}

.pb-why-card .pb-why-card-content,
.pb-why-card .pb-why-card-icon {
  position: relative;
  z-index: 3;
}

.pb-why-card::before {
  z-index: 1;
}

.pb-why-card::after {
  z-index: 2;
}

/* Cursor Glow */
.pb-why-card-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--why-x, 50%) var(--why-y, 50%),
    rgba(0, 116, 173, 0.16),
    transparent 34%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pb-why-card:hover .pb-why-card-glow {
  opacity: 1;
}

/* Premium Card Hover */
.pb-why-card:hover {
  transform: translateY(-10px) scale(1.015);
}

/* Icon Smooth Premium Motion */
.pb-why-card-icon {
  position: relative;
  overflow: hidden;
}

.pb-why-card-icon::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 45%,
    transparent 70%
  );
  transform: translateX(-120%) rotate(15deg);
  transition: transform 0.8s ease;
}

.pb-why-card:hover .pb-why-card-icon::before {
  transform: translateX(120%) rotate(15deg);
}

.pb-why-card:hover .pb-why-card-icon {
  animation: pbWhyIconPulse 1.8s ease-in-out infinite;
}

/* Text Micro Animation */
.pb-why-card-content h3,
.pb-why-card-content p {
  transition: transform 0.35s ease, color 0.35s ease;
}

.pb-why-card:hover .pb-why-card-content h3 {
  transform: translateX(4px);
  color: #0074ad;
}

.pb-why-card:hover .pb-why-card-content p {
  transform: translateX(4px);
}

/* Image Smooth Parallax Feel */
.pb-why-image-wrap {
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.pb-why-image-wrap:hover {
  box-shadow: 0 38px 80px rgba(0, 80, 125, 0.18);
}

.pb-why-image {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.pb-why-image-wrap:hover .pb-why-image {
  filter: drop-shadow(0 30px 42px rgba(0, 80, 125, 0.2));
}

/* Subtitle Dot Pulse */
.pb-why-subtitle::before {
  animation: pbWhyDotPulse 2.2s ease-in-out infinite;
}

/* Smooth Background Text Entrance */
.pb-why-bg-text {
  animation: pbWhyBgTextFloat 7s ease-in-out infinite;
}

/* Left Image Shape Animation */
.pb-why-image-shape {
  animation: pbWhyShapeRotate 7s ease-in-out infinite;
}

/* Card Stagger Upgrade */
.pb-why-right .pb-why-card:nth-child(1) {
  transition-delay: 0.08s;
}

.pb-why-right .pb-why-card:nth-child(2) {
  transition-delay: 0.18s;
}

.pb-why-right .pb-why-card:nth-child(3) {
  transition-delay: 0.28s;
}

.pb-why-right .pb-why-card:nth-child(4) {
  transition-delay: 0.38s;
}

.pb-why-reveal {
  filter: blur(8px);
}

.pb-why-reveal.pb-show {
  filter: blur(0);
}

/* Keyframes */
@keyframes pbWhyIconPulse {
  0%, 100% {
    transform: rotate(-6deg) scale(1.05);
  }

  50% {
    transform: rotate(-2deg) scale(1.11);
  }
}

@keyframes pbWhyDotPulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(215, 25, 75, 0.12);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(215, 25, 75, 0.04);
  }
}

@keyframes pbWhyBgTextFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes pbWhyShapeRotate {
  0%, 100% {
    transform: rotate(18deg) scale(1);
  }

  50% {
    transform: rotate(28deg) scale(1.08);
  }
}


/* =========================
   Mobile Animation Optimization
========================= */

@media (max-width: 991px) {
  .pb-why-card:hover {
    transform: translateY(-6px) scale(1.01);
  }
}

@media (max-width: 575px) {
  .pb-why-reveal {
    filter: blur(4px);
  }

  .pb-why-card:hover .pb-why-card-content h3,
  .pb-why-card:hover .pb-why-card-content p {
    transform: translateX(0);
  }
}


/* =========================
   Reduced Motion Safe CSS
========================= */

@media (prefers-reduced-motion: reduce) {
  .pb-why-card,
  .pb-why-image-wrap,
  .pb-why-image,
  .pb-why-card-icon,
  .pb-why-bg-text,
  .pb-why-image-shape,
  .pb-why-subtitle::before {
    animation: none !important;
    transition: none !important;
  }
}



/* =========================
   Certification Section CSS
========================= */

.pb-cert-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px;
  background:
    radial-gradient(circle at 12% 20%, rgba(215, 25, 75, 0.055), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(0, 116, 173, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fdff 50%, #ffffff 100%);
}

.pb-cert-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 116, 173, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 116, 173, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 78%);
  pointer-events: none;
}

.pb-cert-section::after {
  content: "";
  position: absolute;
  right: -130px;
  top: 80px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(0, 116, 173, 0.10);
  filter: blur(5px);
}

.pb-cert-bg-text {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(68px, 12vw, 165px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 116, 173, 0.07);
  background: linear-gradient(
    90deg,
    rgba(215, 25, 75, 0.07),
    rgba(0, 116, 173, 0.09)
  );
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  animation: pbCertBgFloat 7s ease-in-out infinite;
}

.pb-cert-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 34px;
}

.pb-cert-heading {
  max-width: 850px;
  margin: 0 auto 52px;
  text-align: center;
}

.pb-cert-heading span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(0, 116, 173, 0.085);
  color: #0074ad;
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(0, 116, 173, 0.09);
}

.pb-cert-heading span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7194b;
  box-shadow: 0 0 0 6px rgba(215, 25, 75, 0.12);
  animation: pbCertDotPulse 2.2s ease-in-out infinite;
}

.pb-cert-heading h2 {
  margin: 0 0 16px;
  color: #07131c;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1.6px;
}

.pb-cert-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #40515d;
  font-size: 17px;
  line-height: 1.62;
}


/* =========================
   Certification Grid CSS
========================= */

.pb-cert-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pb-cert-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 285px;
  padding: 28px 24px 24px;
  border-radius: 28px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(215, 25, 75, 0.22), rgba(0, 116, 173, 0.32)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 20px 45px rgba(0, 80, 125, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.pb-cert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 15%, rgba(215, 25, 75, 0.08), transparent 34%),
    radial-gradient(circle at 80% 75%, rgba(0, 116, 173, 0.10), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.pb-cert-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #d7194b, #0074ad);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s ease;
}

.pb-cert-card:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow: 0 34px 70px rgba(0, 80, 125, 0.16);
}

.pb-cert-card:hover::before {
  opacity: 1;
}

.pb-cert-card:hover::after {
  transform: scaleX(1);
}

.pb-cert-icon-wrap {
  width: 148px;
  height: 148px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 116, 173, 0.10);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65),
    0 16px 34px rgba(0, 80, 125, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: all 0.45s ease;
}

.pb-cert-icon-wrap img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  filter: saturate(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.pb-cert-card:hover .pb-cert-icon-wrap {
  transform: translateY(-5px) rotate(-2deg);
  border-color: rgba(0, 116, 173, 0.22);
  box-shadow: 0 22px 42px rgba(0, 80, 125, 0.14);
}

.pb-cert-card:hover .pb-cert-icon-wrap img {
  transform: scale(1.06);
  filter: saturate(1.15) drop-shadow(0 8px 12px rgba(0, 116, 173, 0.15));
}

.pb-cert-card-content {
  position: relative;
  z-index: 2;
}

.pb-cert-card-content h3 {
  margin: 0 0 8px;
  color: #07131c;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
  transition: color 0.35s ease;
}

.pb-cert-card-content p {
  margin: 0;
  color: #526673;
  font-size: 14px;
  line-height: 1.5;
}

.pb-cert-card:hover .pb-cert-card-content h3 {
  color: #0074ad;
}


/* =========================
   Shine Effect CSS
========================= */

.pb-cert-shine {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.42) 45%,
    transparent 70%
  );
  transform: translateX(-130%);
  transition: transform 0.85s ease;
}

.pb-cert-card:hover .pb-cert-shine {
  transform: translateX(130%);
}


/* =========================
   Reveal Animation CSS
========================= */

.pb-cert-reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(7px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s ease;
}

.pb-cert-reveal.pb-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.pb-cert-grid .pb-cert-reveal:nth-child(1) {
  transition-delay: 0.08s;
}

.pb-cert-grid .pb-cert-reveal:nth-child(2) {
  transition-delay: 0.18s;
}

.pb-cert-grid .pb-cert-reveal:nth-child(3) {
  transition-delay: 0.28s;
}


/* =========================
   Certification Keyframes
========================= */

@keyframes pbCertBgFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes pbCertDotPulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(215, 25, 75, 0.12);
  }

  50% {
    box-shadow: 0 0 0 11px rgba(215, 25, 75, 0.04);
  }
}


/* =========================
   Certification Responsive CSS
========================= */

@media (max-width: 991px) {
  .pb-cert-section {
    padding: 82px 0 90px;
  }

  .pb-cert-container {
    padding: 0 26px;
  }

  .pb-cert-grid {
    max-width: 720px;
    grid-template-columns: 1fr;
  }

  .pb-cert-card {
    min-height: auto;
    padding: 26px 24px;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }

  .pb-cert-icon-wrap {
    flex: 0 0 130px;
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 575px) {
  .pb-cert-section {
    padding: 68px 0 74px;
  }

  .pb-cert-bg-text {
    top: 24px;
    font-size: 52px;
    letter-spacing: 3px;
  }

  .pb-cert-container {
    padding: 0 16px;
  }

  .pb-cert-heading {
    margin-bottom: 34px;
  }

  .pb-cert-heading h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .pb-cert-heading p {
    font-size: 15px;
  }

  .pb-cert-grid {
    gap: 18px;
  }

  .pb-cert-card {
    padding: 24px 18px;
    border-radius: 22px;
    flex-direction: column;
    text-align: center;
  }

  .pb-cert-icon-wrap {
    width: 126px;
    height: 126px;
    flex: 0 0 126px;
    border-radius: 22px;
  }

  .pb-cert-card-content h3 {
    font-size: 20px;
  }

  .pb-cert-card-content p {
    font-size: 13px;
  }
}

/* =========================
   Product Portfolio Section CSS
========================= */

.pb-product-portfolio-section {
  position: relative;
  overflow: hidden;
  padding: 20px 0 30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 25, 75, 0.055), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(0, 116, 173, 0.085), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 48%, #ffffff 100%);
}

.pb-product-portfolio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 116, 173, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 116, 173, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 38%, black, transparent 78%);
  pointer-events: none;
}

.pb-product-bg-text {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(64px, 12vw, 165px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 8px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 116, 173, 0.075);
  background: linear-gradient(90deg, rgba(215, 25, 75, 0.07), rgba(0, 116, 173, 0.09));
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  animation: pbProductBgFloat 7s ease-in-out infinite;
}

.pb-product-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 34px;
}

.pb-product-heading {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.pb-product-heading span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(0, 116, 173, 0.085);
  color: #0074ad;
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(0, 116, 173, 0.09);
}

.pb-product-heading span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7194b;
  box-shadow: 0 0 0 6px rgba(215, 25, 75, 0.12);
  animation: pbProductDotPulse 2.3s ease-in-out infinite;
}

.pb-product-heading h2 {
  margin: 0 0 16px;
  color: #07131c;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1.6px;
}

.pb-product-heading p {
  max-width: 780px;
  margin: 0 auto;
  color: #40515d;
  font-size: 17px;
  line-height: 1.62;
}


/* =========================
   Product Filter CSS
========================= */

.pb-product-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.pb-product-filter-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(0, 116, 173, 0.16);
  border-radius: 999px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.86);
  color: #07131c;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 80, 125, 0.06);
  transition: all 0.35s ease;
}

.pb-product-filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #d7194b 0%, #0074ad 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pb-product-filter-btn:hover,
.pb-product-filter-btn.active {
  color: #ffffff;
  border-color: transparent;
  /* transform: translateY(-3px); */
  box-shadow: 0 18px 36px rgba(0, 116, 173, 0.16);
}

.pb-product-filter-btn:hover::before,
.pb-product-filter-btn.active::before {
  opacity: 1;
}

.pb-product-filter-btn.active {
  box-shadow: 0 20px 42px rgba(215, 25, 75, 0.20);
}


/* =========================
   Product Grid CSS
========================= */

.pb-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pb-product-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 610px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(215, 25, 75, 0.24), rgba(0, 116, 173, 0.34)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 20px 48px rgba(0, 80, 125, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.pb-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 25, 75, 0.08), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(0, 116, 173, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.pb-product-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(0, 116, 173, 0.08);
  transition: transform 0.45s ease, background 0.45s ease;
}

.pb-product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 34px 72px rgba(0, 80, 125, 0.16);
}

.pb-product-card:hover::before {
  opacity: 1;
}

.pb-product-card:hover::after {
  transform: scale(1.35);
  background: rgba(215, 25, 75, 0.08);
}

.pb-product-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.pb-product-rx,
.pb-product-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.pb-product-rx {
  width: 46px;
  color: #ffffff;
  background: linear-gradient(135deg, #d7194b, #0074ad);
  box-shadow: 0 12px 24px rgba(0, 116, 173, 0.18);
}

.pb-product-form {
  padding: 8px 14px;
  color: #0074ad;
  background: rgba(0, 116, 173, 0.085);
}


/* =========================
   Product Image CSS
========================= */

.pb-product-visual {
  position: relative;
  z-index: 3;
  height: 190px;
  margin: 0 0 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.95), transparent 46%),
    linear-gradient(135deg, rgba(215, 25, 75, 0.08), rgba(0, 116, 173, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pb-product-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1px solid rgba(0, 116, 173, 0.08);
}

.pb-product-visual::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(215, 25, 75, 0.12), rgba(0, 116, 173, 0.16));
  filter: blur(18px);
  opacity: 0.85;
  transition: all 0.45s ease;
}

.pb-product-visual img {
  position: relative;
  z-index: 2;
  max-width: 84%;
  max-height: 150px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(0, 80, 125, 0.18));
  transition: transform 0.55s ease, filter 0.55s ease;
}

.pb-product-card:hover .pb-product-visual::after {
  transform: scale(1.2);
  opacity: 1;
}

.pb-product-card:hover .pb-product-visual img {
  transform: translateY(-8px) scale(1.06) rotate(-1deg);
  filter: drop-shadow(0 26px 32px rgba(0, 80, 125, 0.24));
}


/* =========================
   Product Content CSS
========================= */

.pb-product-name-block {
  position: relative;
  z-index: 3;
  margin-bottom: 16px;
}

.pb-product-name-block small {
  display: block;
  margin-bottom: 7px;
  color: #a0144a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.pb-product-name-block h3 {
  margin: 0;
  color: #07131c;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.pb-product-card p {
  position: relative;
  z-index: 3;
  margin: 0 0 22px;
  color: #40515d;
  font-size: 15px;
  line-height: 1.62;
}

.pb-product-tags {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 24px;
}

.pb-product-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  color: #075f99;
  background: rgba(0, 116, 173, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.pb-product-detail-btn {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #d7194b, #0074ad);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 116, 173, 0.20);
  transition: all 0.35s ease;
}

.pb-product-detail-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.3) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
}

.pb-product-detail-btn svg {
  position: relative;
  z-index: 2;
  width: 19px;
  height: 19px;
  fill: #ffffff;
  transition: transform 0.35s ease;
}

.pb-product-detail-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(215, 25, 75, 0.24);
}

.pb-product-detail-btn:hover::before {
  transform: translateX(130%);
}

.pb-product-detail-btn:hover svg {
  transform: translateX(5px);
}

.pb-product-shine {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.34) 45%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.85s ease;
}

.pb-product-card:hover .pb-product-shine {
  transform: translateX(130%);
}

.pb-product-card.pb-hide {
  display: none;
}


/* =========================
   Product Modal CSS
========================= */

.pb-product-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.pb-product-modal.active {
  opacity: 1;
  visibility: visible;
}

.pb-product-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 28, 0.64);
  backdrop-filter: blur(8px);
}

.pb-product-modal-box {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  margin: 20px auto;
  top: 50%;
  transform: translateY(-46%) scale(0.96);
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(215, 25, 75, 0.38), rgba(0, 116, 173, 0.48)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  transition: transform 0.35s ease;
}

.pb-product-modal.active .pb-product-modal-box {
  transform: translateY(-50%) scale(1);
}

.pb-product-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  z-index: 5;
  border: none;
  border-radius: 50%;
  background: rgba(0, 116, 173, 0.09);
  color: #d7194b;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pb-product-modal-close:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #d7194b, #0074ad);
  transform: rotate(90deg);
}

.pb-product-modal-top {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding-right: 48px;
}

.pb-product-modal-image-wrap {
  position: relative;
  min-height: 245px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.95), transparent 48%),
    linear-gradient(135deg, rgba(215, 25, 75, 0.08), rgba(0, 116, 173, 0.14));
  border: 1px solid rgba(0, 116, 173, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pb-product-modal-image-bg {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(215, 25, 75, 0.14), rgba(0, 116, 173, 0.18));
  filter: blur(18px);
}

.pb-product-modal-image-wrap img {
  position: relative;
  z-index: 2;
  max-width: 86%;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 80, 125, 0.22));
  animation: pbModalImageFloat 4.5s ease-in-out infinite;
}

.pb-product-modal-header span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 116, 173, 0.085);
  color: #0074ad;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.pb-product-modal-header h3 {
  margin: 0 0 12px;
  color: #07131c;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.pb-product-modal-header p {
  margin: 0;
  color: #40515d;
  font-size: 16px;
  line-height: 1.65;
}

.pb-product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pb-product-modal-col {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
  border: 1px solid rgba(0, 116, 173, 0.10);
}

.pb-product-modal-col h4 {
  margin: 0 0 14px;
  color: #07131c;
  font-size: 18px;
  font-weight: 900;
}

.pb-product-modal-col ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pb-product-modal-col li {
  position: relative;
  padding-left: 18px;
  color: #40515d;
  font-size: 14px;
  line-height: 1.5;
}

.pb-product-modal-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7194b, #0074ad);
}

.pb-product-modal-note {
  grid-column: span 2;
}

.pb-product-modal-note p {
  margin: 0;
  color: #40515d;
  font-size: 15px;
  line-height: 1.65;
}

.pb-product-modal-footer {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(215, 25, 75, 0.06);
  color: #6a3a48;
  font-size: 13px;
  line-height: 1.5;
}


/* =========================
   Product Reveal Animation
========================= */

.pb-product-reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(7px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s ease;
}

.pb-product-reveal.pb-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.pb-product-grid .pb-product-reveal:nth-child(1) { transition-delay: 0.06s; }
.pb-product-grid .pb-product-reveal:nth-child(2) { transition-delay: 0.13s; }
.pb-product-grid .pb-product-reveal:nth-child(3) { transition-delay: 0.20s; }
.pb-product-grid .pb-product-reveal:nth-child(4) { transition-delay: 0.27s; }
.pb-product-grid .pb-product-reveal:nth-child(5) { transition-delay: 0.34s; }
.pb-product-grid .pb-product-reveal:nth-child(6) { transition-delay: 0.41s; }

@keyframes pbProductBgFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes pbProductDotPulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(215, 25, 75, 0.12);
  }

  50% {
    box-shadow: 0 0 0 11px rgba(215, 25, 75, 0.04);
  }
}

@keyframes pbModalImageFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}


/* =========================
   Product Responsive CSS
========================= */

@media (max-width: 1199px) {
  .pb-product-grid {
    gap: 22px;
  }

  .pb-product-card {
    padding: 24px;
  }
}

@media (max-width: 991px) {
  .pb-product-portfolio-section {
    padding: 82px 0 90px;
  }

  .pb-product-container {
    padding: 0 26px;
  }

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

  .pb-product-modal-top {
    grid-template-columns: 1fr;
    padding-right: 44px;
  }

  .pb-product-modal-image-wrap {
    max-width: 360px;
    width: 100%;
  }

  .pb-product-modal-body {
    grid-template-columns: 1fr;
  }

  .pb-product-modal-note {
    grid-column: span 1;
  }
}

@media (max-width: 575px) {
  .pb-product-portfolio-section {
    padding: 68px 0 74px;
  }

  .pb-product-bg-text {
    top: 26px;
    font-size: 48px;
    letter-spacing: 3px;
  }

  .pb-product-container {
    padding: 0 16px;
  }

  .pb-product-heading {
    margin-bottom: 28px;
  }

  .pb-product-heading h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .pb-product-heading p {
    font-size: 15px;
  }

  .pb-product-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-bottom: 30px;
  }

  .pb-product-filter-btn {
    flex: 0 0 auto;
    padding: 11px 17px;
    font-size: 13px;
  }

  .pb-product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pb-product-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .pb-product-visual {
    height: 165px;
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .pb-product-visual img {
    max-height: 128px;
  }

  .pb-product-name-block h3 {
    font-size: 32px;
  }

  .pb-product-modal-box {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .pb-product-modal-top {
    padding-right: 0px;
    gap: 20px;
  }

  .pb-product-modal-image-wrap {
    min-height: 190px;
    border-radius: 20px;
  }

  .pb-product-modal-image-wrap img {
    max-height: 145px;
  }

  .pb-product-modal-header h3 {
    font-size: 34px;
  }

  .pb-product-modal-col {
    padding: 18px;
    border-radius: 18px;
  }
}





/* =========================
   Product Infinite Slider
========================= */

.pbs-product-slider-section {
  overflow: hidden;
  padding: 50px 0;
 
  /* background:
    radial-gradient(circle at 12% 18%, rgba(215, 25, 75, 0.06), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(0, 116, 173, 0.09), transparent 30%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 100%); */
}

.pbs-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

.pbs-slider-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.pbs-slider-heading span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 116, 173, 0.08);
  color: #0074ad;
  font-size: 13px;
  font-weight: 900;
}

.pbs-slider-heading h2 {
  margin: 0 0 12px;
  color: #07131c;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
}

.pbs-slider-heading h2 strong {
  display: block;
  background: linear-gradient(90deg, #d7194b 0%, #8c397e 48%, #0074ad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pbs-slider-heading p {
  margin: 0;
  color: #40515d;
  font-size: 16px;
  line-height: 1.65;
}

.pbs-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
}

.pbs-slider-wrap::before,
.pbs-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 5;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.pbs-slider-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #f8fcff 0%, transparent 100%);
}

.pbs-slider-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}

.pbs-slider-track {
  display: flex;
  width: max-content;
  animation: pbsInfiniteScroll 28s linear infinite;
}

.pbs-slider-wrap:hover .pbs-slider-track {
  animation-play-state: paused;
}

.pbs-product-slide {
  flex: 0 0 280px;
  padding: 0 12px;
}

.pbs-product-card {
  position: relative;
  overflow: hidden;
  /* min-height: 310px; */
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(215, 25, 75, 0.18), rgba(0, 116, 173, 0.28)) border-box;
  border: 1px solid transparent;
  /* box-shadow: 0 16px 38px rgba(0, 80, 125, 0.08); */
  text-align: center;
  transition: all 0.35s ease;
}

.pbs-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(215, 25, 75, 0.08), transparent 34%),
    radial-gradient(circle at 82% 84%, rgba(0, 116, 173, 0.13), transparent 38%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pbs-product-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 24px 58px rgba(0, 80, 125, 0.14); */
}

.pbs-product-card:hover::before {
  opacity: 1;
}

.pbs-product-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 150px;
  object-fit: contain;
  /* margin-bottom: 20px; */
  filter: drop-shadow(0 18px 22px rgba(0, 80, 125, 0.16));
  transition: all 0.45s ease;
}

.pbs-product-card:hover img {
  transform: translateY(-6px) scale(1.06);
}

.pbs-product-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: #07131c;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.pbs-product-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #40515d;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

@keyframes pbsInfiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .pbs-product-slider-section {
    padding: 56px 0;
  }

  .pbs-container {
    padding: 0 24px;
  }

  .pbs-product-slide {
    flex-basis: 250px;
  }

  .pbs-product-card img {
    height: 135px;
  }
}

@media (max-width: 575px) {
  .pbs-product-slider-section {
    padding: 0;
  }

  .pbs-container {
    padding: 0 16px;
  }

  .pbs-slider-heading {
    margin-bottom: 28px;
  }

  .pbs-slider-heading h2 {
    font-size: 30px;
  }

  .pbs-slider-heading p {
    font-size: 15px;
  }

  .pbs-slider-wrap::before,
  .pbs-slider-wrap::after {
    width: 55px;
  }

  .pbs-slider-track {
    animation-duration: 24s;
  }

  .pbs-product-slide {
    flex-basis: 220px;
    padding: 0 8px;
  }

  .pbs-product-card {
    /* min-height: 260px; */
    padding: 20px;
    border-radius: 22px;
  }

  .pbs-product-card img {
    height: 120px;
    /* margin-bottom: 16px; */
  }

  .pbs-product-card h3 {
    font-size: 19px;
  }

  .pbs-product-card p {
    font-size: 13px;
  }
}


    /* SLIDER */
    .hero-slider {
      position: relative;
      width: 100%;
      height: 80vh;
      min-height: 680px;
      overflow: hidden;
      background: #07131c;
    }

    /* SLIDES */
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
      transition: 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      visibility: visible;
      z-index: 2;
    }

    /* BACKGROUND IMAGE */
    .slide-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transform: scale(1);
      transition: transform 8s ease;
    }

    .slide.active .slide-bg {
      transform: scale(1.1);
    }

    /* OVERLAY */
    .overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background:
        linear-gradient(90deg, rgba(7, 19, 28, 0.70), rgba(7, 19, 28, 0.38), rgba(7, 19, 28, 0.68)),
        linear-gradient(180deg, rgba(7, 19, 28, 0.25), rgba(7, 19, 28, 0.45));
      z-index: 1;
    }

    /* CONTENT */
    .slide-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
      padding: 0 8%;
      justify-content: center;
    }

    .text-box {
      max-width: 980px;
      transform: translateY(50px);
      transition: 1s ease;
      text-align: center;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      opacity: 0;
    }

    .slide.active .text-box {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 10px 18px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #ffffff;
      font-size: 14px;
      font-weight: 800;
      font-family: 'Plus Jakarta Sans', Arial, sans-serif !important;
      backdrop-filter: blur(12px);
    }

    .hero-label i {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #d7194b;
      box-shadow: 0 0 0 7px rgba(215, 25, 75, 0.25);
    }

    .text-box h1 {
      width: 100%;
      color: #fff;
      font-size: 60px;
      line-height: 1.1;
      margin: 0 0 20px;
      font-weight: 900;
      letter-spacing: -1.4px;
      font-family: 'Varela Round', Arial, sans-serif !important;
    }

    .text-box h1 span {
      color: #8fd8ff;
    }

    .text-box p {
      width: 100%;
      max-width: 800px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 17px;
      line-height: 1.7;
      margin: 0 0 32px;
      font-weight: 500;
      font-family: 'Plus Jakarta Sans', Arial, sans-serif !important;
    }

    /* BUTTONS */
    .btn-group,
    .hero-btn-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-btn {
      min-height: 54px;
      padding: 14px 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 900;
      text-decoration: none;
      transition: all 0.35s ease;
      font-family: 'Plus Jakarta Sans', Arial, sans-serif !important;
    }

    .hero-btn-primary {
      color: #ffffff;
      background: linear-gradient(135deg, #d7194b 0%, #0074ad 100%);
      box-shadow: 0 18px 42px rgba(0, 116, 173, 0.35);
    }

    .hero-btn-outline {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.32);
      backdrop-filter: blur(12px);
    }

    .hero-btn svg {
      width: 19px;
      height: 19px;
      fill: currentColor;
      transition: transform 0.35s ease;
    }

    .hero-btn:hover {
      transform: translateY(-5px);
    }

    .hero-btn-primary:hover svg {
      transform: translateX(5px);
    }

    .hero-btn-outline:hover {
      background: #ffffff;
      color: #0074ad;
    }

    /* NAVIGATION */
    .slider-nav {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }

    .slider-nav span {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #ffffff70;
      cursor: pointer;
      transition: .3s;
      display: none;
    }

    .slider-nav span.active {
      width: 40px;
      border-radius: 30px;
      background: #fff;
    }

    /* TABLET */
    @media(max-width:991px) {
      .hero-slider {
        height: 75vh;
        min-height: 600px;
      }

      .text-box {
        max-width: 100%;
      }

      .text-box h1 {
        font-size: 48px;
      }

      .text-box p {
        max-width: 100%;
        font-size: 15.5px;
      }
    }

    /* MOBILE */
    @media(max-width:768px) {
      .hero-slider {
        height: auto;
        min-height: 650px;
      }

      .slide-content {
        padding: 80px 20px;
      }

      .text-box {
        width: 100%;
      }

      .hero-label {
        font-size: 12px;
        padding: 9px 14px;
      }

      .text-box h1 {
        font-size: 38px;
        margin-bottom: 15px;
      }

      .text-box p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
      }

      .text-box .btn-group {
        flex-direction: column;
        gap: 12px !important;
        display: flex;
        width: 100%;
        align-items: center;
      }

      .text-box .btn-group a {
        width: 100%;
        max-width: 320px;
      }

      .slider-nav {
        bottom: 25px;
      }
    }

    /* SMALL MOBILE */
    @media(max-width:480px) {
      .hero-slider {
        min-height: 700px;
      }

      .slide-content {
        padding: 70px 15px;
      }

      .text-box h1 {
        font-size: 30px;
      }

      .text-box p {
        font-size: 14px;
      }

      .text-box .btn-group a {
        padding: 14px 25px;
        font-size: 14px;
      }

      .text-box .btn-group {
        flex-direction: column;
        gap: 12px;
        display: flex;
        width: 100%;
        align-items: center;
      }
    }



    .mpg-kicker,
.mpg-section-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.mpg-kicker {
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 16px;
  color: #0074ad;
  background: rgba(0, 116, 173, 0.085);
  border: 1px solid rgba(0, 116, 173, 0.16);
  font-size: 14px;
}

.mpg-kicker i {
  width: 10px;
  height: 10px;
  background: #d7194b;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(215, 25, 75, 0.14);
}