    body {
      font-family: 'Inter', sans-serif;
      background-color: #fff;
    }
    footer {
      background-color: #f2f2f2;
      padding: 15px 0;
      font-size: 14px;
      color: #555;
    }

    @media (max-width: 768px) {
      .header-top .row > div {
        text-align: center !important;
        margin-bottom: 15px;
      }

      .info-box {
        justify-content: center;
      }
    }
	#mainSlider {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  min-height: 260px;
  margin: 0 auto;
  box-shadow: 0 8px 44px #2222;
  border-radius: 0 0 2rem 2rem;
}
.slider-img {
  width: 100vw;
  max-width: 100%;
  height: 55vw;
  max-height: 480px;
  object-fit: cover;
  filter: brightness(92%) saturate(1.08);
  transition: transform .7s cubic-bezier(.23,1.15,.29,.96);
}
.carousel-item.active .slider-img {
  transform: scale(1.03) rotate(-0.5deg);
}
.carousel-caption.animate-caption {
  background: rgba(38, 28, 70, 0.55);
  padding: 1.2rem 2.1rem;
  border-radius: 1.4rem;
  animation: fadeUp .9s cubic-bezier(.41,1.4,.23,.94);
  box-shadow: 0 4px 22px #0006;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px);}
  100% { opacity: 1; transform: translateY(0);}
}
.carousel-caption h4 {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-shadow: 0 2px 18px #000c;
}
@media (max-width: 768px) {
  .slider-img { height: 40vw; max-height: 260px; }
  .carousel-caption { padding: .7rem 1.1rem; }
  .carousel-caption h4 { font-size: 1.25rem; }
}
@media (max-width: 430px) {
  #mainSlider { border-radius: 0 0 1rem 1rem;}
  .slider-img { height: 37vw; max-height: 180px; }
  .carousel-caption { padding: .45rem .8rem; }
  .carousel-caption h4 { font-size: .95rem; }
}
.about-section {
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}
.about-img-box {
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(120deg, #eaf4ff 40%, #d2e8ff 100%);
  min-height: 250px;
  max-height: 410px;
  box-shadow: 0 12px 32px #19275325;
  transition: box-shadow .3s, transform .22s;
}
.about-img-box:hover {
  box-shadow: 0 18px 56px #0a35573a;
  transform: scale(1.03) rotate(-0.5deg);
}
.about-card {
  background: rgba(255,255,255,0.95);
  border-radius: 2rem;
  box-shadow: 0 8px 34px #0a355723;
  border: 2.5px solid #27e0c022;
  backdrop-filter: blur(6px);
  font-size: 1.07rem;
  color: #222;
  animation: fadeInAbout .85s cubic-bezier(.38,1.6,.33,.95);
}
@keyframes fadeInAbout {
  from { opacity: 0; transform: translateY(36px);}
  to { opacity: 1; transform: translateY(0);}
}
.about-btn {
  background: linear-gradient(90deg,#27e0c0 0%, #6c63ff 100%);
  color: #fff !important;
  border-radius: 2rem;
  font-size: 1.09rem;
  letter-spacing: .5px;
  border: none;
  box-shadow: 0 2px 12px #27e0c045;
  transition: background .13s, box-shadow .13s, transform .14s;
}
.about-btn:hover {
  background: linear-gradient(90deg,#6c63ff 0%, #27e0c0 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.06);
}
@media (max-width: 991px) {
  .about-section .row { flex-direction: column-reverse;}
  .about-img-box { margin-bottom:2rem;}
}
@media (max-width: 767px) {
  .about-section { padding: 2.5rem 0;}
  .about-card { padding: 1.2rem 1rem;}
  .about-img-box { min-height:160px; }
}.pipxa-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.pipxa-service-card {
  background: rgba(255,255,255,0.90);
  border-radius: 1.7rem;
  box-shadow: 0 4px 24px #27e0c028;
  border: 2.5px solid #27e0c018;
  padding: 2.1rem 1rem 1.4rem 1rem;
  min-height: 330px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .21s, transform .16s, background .19s;
  position: relative;
}

.pipxa-service-card:hover {
  box-shadow: 0 10px 48px #27e0c06a;
  background: linear-gradient(135deg, #eaf4ff 60%, #d2e8ff 100%);
  transform: translateY(-7px) scale(1.045);
  border-color: #27e0c05a;
}

.pipxa-icon-bg {
  width: 70px; height: 70px;
  background: linear-gradient(135deg,#27e0c0 30%,#36a3fe 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.3rem;
  color: #fff;
  margin: 0 auto;
  box-shadow: 0 2px 24px #27e0c044;
  transition: background .18s, box-shadow .16s, color .14s;
  border: 2.5px solid #fff;
  animation: popIcon 0.88s cubic-bezier(.32,1.41,.47,.92);
}
@keyframes popIcon {
  0% { transform: scale(0.7) rotate(-16deg);}
  60% { transform: scale(1.1);}
  100% { transform: scale(1) rotate(0);}
}
.pipxa-service-card:hover .pipxa-icon-bg {
  filter: brightness(1.15) drop-shadow(0 0 12px #36a3fe60);
}
.pipxa-card-title {
  font-size: 1.11rem;
  color: #07845f;
  margin-bottom: .3rem;
  font-weight: 700;
  letter-spacing: .3px;
}
.pipxa-card-desc {
  font-size: .99rem;
  color: #444b;
  margin-top: .15rem;
}
.pipxa-main-btn {
  display: inline-block;
  background: linear-gradient(90deg,#27e0c0 10%, #6c63ff 100%);
  color: #fff !important;
  border-radius: 2rem;
  font-size: 1.11rem;
  letter-spacing: .5px;
  text-decoration:none;
  border: none;
  padding: 0.62rem 2.2rem;
  font-weight: 600;
  box-shadow: 0 2px 12px #27e0c045;
  transition: background .13s, box-shadow .13s, transform .15s;
}
.pipxa-main-btn:hover {
  background: linear-gradient(90deg,#6c63ff 10%, #27e0c0 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.06);
}

/* Responsive grid: 5 cols desktop, 3 cols tablet, 2 cols mobile, 1 on very small */
@media (max-width: 1200px) {
  .pipxa-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .pipxa-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pipxa-grid { grid-template-columns: 1fr; }
  .pipxa-service-card { min-height: 220px; padding: 1.2rem .5rem; }
}.client-testimonial-section {
  background: linear-gradient(120deg, #20253a 20%, #56b4fe 100%);
}
.testimonial-card {
  background: rgba(255,255,255,0.21);
  border-radius: 1.7rem;
  padding: 2.3rem 2.1rem 1.7rem 2.1rem;
  max-width: 620px;
  min-height: 220px;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: 0 8px 40px #20253a23;
  position: relative;
  backdrop-filter: blur(5px);
  border: 2.5px solid #27e0c055;
  animation: fadeInTesti .7s cubic-bezier(.39,1.41,.32,.94);
  transition: box-shadow .18s, border-color .15s;
}
.testimonial-card:hover {
  box-shadow: 0 14px 56px #15304b41;
  border-color: #27e0c0;
}
@keyframes fadeInTesti {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
.carousel-indicators [data-bs-target] {
  background-color: #27e0c0;
  width: 12px; height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(1) brightness(1.2);
}
@media (max-width: 767px) {
  .testimonial-card {
    padding: 1.1rem 0.7rem 1.3rem 0.7rem;
    font-size: 1rem;
  }
}.pipxa-contactinfo-section {
  background: #fcfdff;
  border-bottom: 1.5px solid #f0f0fa;
}
.contact-box {
  gap: 0.7rem;
  min-width: 250px;
}
.icon-hex {
  width: 48px; height: 48px;
  background: linear-gradient(135deg,#e8fcf8 50%,#d0e7ff 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px #17b4c218;
  border: 1.5px solid #ebebfa;
  font-size: 1.6rem;
  color: #27e0c0;
  transition: background .2s, color .18s;
}
.contact-box:hover .icon-hex {
  background: linear-gradient(135deg,#27e0c0 50%,#36a3fe 100%);
  color: #fff;
}
@media (max-width: 767px) {
  .contact-box {min-width: 0;}
  .icon-hex {width: 42px; height: 42px; font-size: 1.25rem;}
  .pipxa-contactinfo-section {padding-bottom:1rem;}
}.pipxa-map-section {
  position:relative;
  margin-top: 0;
  margin-bottom:0;
}
.address-overlay-card {
  position: absolute;
  top: 24px;
  left: 32px;
  background: rgba(255,255,255,0.96);
  border-radius: 1.2rem;
  box-shadow: 0 4px 22px #027a9135;
  padding: 1.1rem 2.1rem .9rem 1.5rem;
  min-width: 260px;
  z-index: 2;
  border: 2px solid #e0f6fa;
  animation: fadeInCard 0.8s cubic-bezier(.36,1.21,.43,.92);
}
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
@media (max-width: 600px) {
  .address-overlay-card {left: 6px; top: 8px; min-width: 180px; padding: .7rem 1.1rem;}
}
.pipxa-footer-section {
  background: linear-gradient(120deg, #222c36 70%, #2c3954 100%);
  color: #e5ecf6;
  font-size: 1.04rem;
  box-shadow: 0 -8px 42px #011a233c;
}
.footer-logo {
  width: 116px;
  max-width: 100%;
  border-radius: 1.1rem;
  box-shadow: 0 3px 22px #27e0c01a;
  background: #fff;
  padding: 5px 10px;
}
.footer-about {
  color: #b2d0df;
  font-size: 1.01rem;
  margin-top: 0.3rem;
  margin-bottom: 0.6rem;
}
.footer-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .6px;
  margin-bottom: 1rem;
  position: relative;
}
.footer-title:after {
  content: '';
  display: block;
  width: 38px;
  height: 2.5px;
  background: linear-gradient(90deg,#27e0c0 0%, #56b4fe 100%);
  margin-top: 7px;
  border-radius: 2px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.68rem;
}
.footer-links a {
  color: #bfe0ee;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .2px;
  position: relative;
  transition: color .16s;
}
.footer-links a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg,#27e0c0 0%, #56b4fe 100%);
  transition: width .19s;
  border-radius: 3px;
}
.footer-links a:hover {
  color: #27e0c0;
}
.footer-links a:hover:after {
  width: 24px;
}
.footer-contact {
  list-style: none;
  padding-left: 0;
}
.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: #e5ecf6;
  font-size: 1.03rem;
  gap: 0.7rem;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color .14s;
  word-break: break-all;
}
.footer-contact a:hover {
  color: #27e0c0;
  text-decoration: underline;
}
.footer-icon-pill {
  background: linear-gradient(90deg,#27e0c0 10%, #56b4fe 100%);
  color: #fff;
  border-radius: 2rem;
  padding: 7px 12px;
  font-size: 1.05rem;
  margin-right: .7rem;
  box-shadow: 0 2px 12px #27e0c04a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-social {
  margin-top: .2rem;
}
.footer-social-link {
  display: inline-block;
  width: 36px; height: 36px;
  line-height: 36px;
  margin: 0 6px;
  color: #fff;
  background: linear-gradient(135deg,#27e0c0 30%, #56b4fe 100%);
  border-radius: 50%;
  text-align: center;
  font-size: 1.17rem;
  transition: background .16s, color .16s, transform .13s;
  box-shadow: 0 2px 10px #27e0c042;
}
.footer-social-link:hover {
  background: #fff;
  color: #27e0c0;
  transform: scale(1.12) translateY(-2px);
}
.footer-newsletter .input-group {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 2px 8px #27e0c021;
  background: rgba(255,255,255,0.06);
}
.footer-newsletter input {
  border: none !important;
  background: none !important;
  color: #fff;
  padding-left: 1rem;
  font-size: 1rem;
}
.footer-newsletter input:focus {
  background: none;
  color: #fff;
  box-shadow: none !important;
}
.footer-newsletter .btn-gradient {
  background: linear-gradient(90deg,#27e0c0 0%, #56b4fe 100%);
  color: #fff;
  border: none;
  font-size: 1.07rem;
  border-radius: 0 2rem 2rem 0;
  padding: 0 18px;
  transition: background .14s;
}
.footer-newsletter .btn-gradient:hover {
  background: linear-gradient(90deg,#56b4fe 0%, #27e0c0 100%);
  color: #fff;
}
.footer-news-txt {
  color: #8bdff7;
  font-size: .97rem;
}
.footer-hr {
  border-color:#3e4955;
  opacity:.13;
}
.footer-copy {
  color: #b1bbca;
  font-size: .97rem;
  letter-spacing: .2px;
}

@media (max-width: 991px) {
  .pipxa-footer-section .col-lg-4, 
  .pipxa-footer-section .col-lg-3,
  .pipxa-footer-section .col-lg-2 {
    margin-bottom:2rem;
    text-align: center!important;
  }
  .footer-logo {margin-left: auto; margin-right: auto;}
}
@media (max-width: 767px) {
  .pipxa-footer-section {font-size: .97rem;}
  .footer-social-link {margin:0 2px;}
  .footer-logo {width:90px;}
  .footer-title {font-size: 1rem;}
}
/* Header */
.pipxa-header-top {
  border-bottom: 1.5px solid #f0f2f7;
  box-shadow: 0 2px 12px #b7a5760e;
}
.pipxa-hex-icon {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px;
  background:#e9f5fb;
  color:#2596be;
  font-size:1.22rem;
  border-radius:12px;
  box-shadow:0 2px 10px #2596be10;
  border: 1.5px solid #d9e9f7;
}
.pipxa-logo {
  max-width: 180px;
  max-height: 90px;
  border-radius: 7px;
  box-shadow: 0 2px 12px #b7a57616;
  background: #fff;
  padding: 6px 18px;
  margin: 0 auto;
  display: block;
}

.pipxa-header-link {
  color: #2596be;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color .17s;
}
.pipxa-header-link:hover {
  color: #b22322;
  text-decoration: underline;
}
.pipxa-address,
.pipxa-hours {
  color: #4d535c;
  font-size: .96rem;
  font-weight: 500;
}

/* Navbar/Menu */
.pipxa-navbar {
  border-bottom: 1.5px solid #ececec;
  box-shadow: 0 1px 6px #f0f3f9;
}
.pipxa-menu-list {
  list-style: none;
}
.pipxa-menu-link {
  color: #941404;
  font-weight: 500;
  font-size: 1.16rem;
  background: none !important;
  border-radius: 0;
  text-decoration: none;
  letter-spacing: .08em;
  padding: 2px 10px 4px 10px !important;
  transition: color .17s, background .14s;
  border: none !important;
  position: relative;
}
.pipxa-menu-link.active,
.pipxa-menu-link:hover,
.pipxa-menu-link:focaus {
  color: #b22322 !important;
  background: none !important;
  font-weight: 600;
}
.pipxa-menu-list .nav-item:not(:last-child) .nav-link:after {
  content: "";
  display: inline-block;
  border-left: 1.5px solid #c0b9b9;
  height: 19px;
  margin: 0 1.15rem -3px 1.15rem;
  vertical-align: middle;
}
@media (max-width:991px) {
  .pipxa-logo {max-width: 70px; max-height: 38px;}
  .pipxa-menu-link {font-size:1rem;}
}
@media (max-width:767px) {
  .pipxa-header-top {font-size:.98rem;}
  .pipxa-hex-icon {width: 27px;height:27px;font-size:.99rem;}
  .pipxa-logo {max-width: 46px;}
  .pipxa-menu-list {gap:.3rem;}
  .pipxa-menu-list .nav-item:not(:last-child) .nav-link:after {display:none;}
  .pipxa-navbar {padding-top:0;padding-bottom:0;}
}
 .whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1050;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  box-shadow: 0 4px 16px #189d55a6;
  text-decoration: none;
  transition: box-shadow 0.2s, background 0.2s;
}
.whatsapp-float:hover {
  background: #1ebd5a;
  box-shadow: 0 8px 32px #189d55c9;
  color: #fff;
}
@media (max-width:600px) {
  .whatsapp-float {
    width: 48px; height: 48px; font-size: 1.7rem; left: 16px; bottom: 16px;
  }
}.pipxa-notification-section {
  background: linear-gradient(90deg,#f8f9ff 60%,#fbeee6 100%);
}
.notification-col {
  min-width:320px;
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 6px 32px #b2232217;
  transition: box-shadow .14s;
}
.notification-col:hover { box-shadow: 0 10px 34px #b2232236;}
.notif-header {
  background: linear-gradient(90deg,#b22322 70%,#b7a576 100%);
  border-radius:1.2em 1.2em 0 0;
}
.notif-list {
  background: transparent;
  max-height:230px;
  overflow-y:auto;
}
.notif-item {
  border-bottom:1.3px solid #f7ebe0;
  padding-bottom: .5rem;
  margin-bottom: .6rem;
  transition: background .11s;
}
.notif-item:hover { background:#f7fafc; }
@media (max-width: 991px) {
  .notification-col {max-width:100%;}
}

    /* To Top Floating Button */
    .pipxa-float-top {
      position: fixed;
      bottom: 34px;
      right: 34px;
      z-index: 9999;
      background: #2388ff;
      color: #fff;
      border-radius: 50%;
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      cursor: pointer;
      box-shadow: 0 3px 18px #2388ff3a;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s, background .2s, box-shadow .19s, transform .17s;
      animation: pipxa-fadein 1.1s .1s backwards;
    }
    .pipxa-float-top.active {
      opacity: 1;
      pointer-events: auto;
      animation: pipxa-bounce 1.2s infinite;
    }
    .pipxa-float-top:hover { background: #0a5bc4; transform: scale(1.07); }
    @media (max-width: 767px) {
      .pipxa-float-top { right: 12px; bottom: 14px; width: 46px; height: 46px; font-size: 1.45rem;}
    }

    @keyframes pipxa-fadein {
      0% { opacity: 0; transform: scale(.82) translateY(28px);}
      100% { opacity: 1; transform: scale(1) translateY(0);}
    }
    @keyframes pipxa-bounce {
      0%, 100% { transform: translateY(0);}
      30% { transform: translateY(-6px);}
      60% { transform: translateY(0);}
      80% { transform: translateY(-4px);}
    }
	/* --- Floating Notification Button (LEFT) --- */
#notif-btn {
  position: fixed;
  left: 0;
  top: 38%;
  z-index: 1055;
  background: linear-gradient(135deg, #27e0c0 30%, #56b4fe 100%);
  color: #fff;
  border-radius: 0 2rem 2rem 0;
  box-shadow: 0 6px 24px #27e0c055;
  padding: 12px 18px 12px 10px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: background .17s, box-shadow .18s;
  border: none;
}
#notif-btn .fa-bell {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
#notif-btn span.notif-dot {
  width: 10px; height: 10px;
  background: #ffba00;
  border-radius: 50%;
  display: block;
  margin-top: 2px;
  box-shadow: 0 0 5px #ffba00bb;
}

/* --- Notification Slide-out Panel (RIGHT) --- */
#notif-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 28px #27e0c030;
  z-index: 1070;
  padding: 2.3rem 2rem 1.5rem 2rem;
  transition: right .38s cubic-bezier(.53,1.23,.41,.99);
  border-radius: 1.1rem 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#notif-panel.open { right: 0; }

#notif-panel .notif-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid #e4f7f5;
  margin-bottom: 1.3rem;
  padding-bottom: .5rem;
}

#notif-panel .notif-panel-header .fa-bell {
  color: #27e0c0;
}

#notif-panel .close {
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #222;
  opacity: 0.7;
  transition: color .16s;
}
#notif-panel .close:hover { color: #27e0c0; }

.notif-tabs .nav-link.active { 
  background: linear-gradient(135deg, #27e0c0 30%, #56b4fe 100%);
  color: #b22322 !important;
}
.notif-tabs .nav-link { 
  border-radius: 1.1rem 1.1rem 0 0; 
  color: #27e0c0 !important;
  background: none !important;
}

.notif-content { 
  min-height:225px; 
  max-height:64vh; 
  overflow-y:auto; 
  padding: 1.1rem 0.3rem 1.1rem 0.1rem;
}

.notif-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1.2px solid #eaf7f5;
  padding-bottom: .7rem;
  margin-bottom: .7rem;
  transition: background .11s;
}
.notif-item:hover { background:#f8fafc; }
.calendar-date {
  min-width: 48px;
  background: linear-gradient(135deg, #27e0c0 30%, #56b4fe 100%);
  border-radius: .8em;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 3px 12px #27e0c026;
  text-align:center;
  padding: 6px 0 3px 0;
  font-family: 'Inter', sans-serif;
}
.calendar-date .date-day {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
}
.calendar-date .date-month {
  font-size: .95rem;
  letter-spacing: .03em;
  font-weight: 600;
}

@media (max-width: 500px) {
  #notif-panel { width:95vw; padding: 1.3rem 0.3rem 1.3rem 0.3rem;}
}
