*{
    margin: 0%;
    padding: 0%;
}
h1, h2, h3 ,h4 ,h5 ,h6 ,span {
  font-family: 'Baloo 2', cursive;
}

body, p {
  font-family: 'Nunito', sans-serif;
}
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

  .nav-underline {
    position: absolute;
    left: 50%;
    bottom: -14px;
    height: 3px;
    width: 0;
    border-radius: 9999px;
    background: #4E8185;
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }

  .nav-link:hover .nav-underline,
  .nav-link.active .nav-underline {
    width: 38px;
  }

  .nav-link.active {
    color: #4E8185;
    font-weight: 600;
  }

  .mobile-nav-link.active {
    background-color: #f3fbf5;
    color: #4E8185;
    font-weight: 600;
  }

.reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

.reviews-swiper .swiper-slide {
  display: flex;
  height: auto;
  opacity: 0.8;
  transform: scale(0.92);
  transition: 0.4s ease;
}

.reviews-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 320px;
  border-radius: 32px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  transition: 0.4s;
}

/* Active card */
.reviews-swiper .swiper-slide-active .review-card {
  background: #4E8185;
  color: white;
}

.review-text {
  color: #5d5d5d;
}

.review-role {
  color: #777;
}

.reviews-swiper .swiper-slide-active .review-text,
.reviews-swiper .swiper-slide-active .review-role {
  color: white;
}

  .pet-slider * {
    box-sizing: border-box;
  }

  .pet-slides {
    position: relative;
    width: 100%;
    min-height: inherit;
  }

  .pet-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
  }

  .pet-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: relative;
  }

  .pet-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .pet-dot.active {
    width: 28px;
    background: #079136;
  }

  @media (max-width: 1023px) {
    .pet-indicators {
      bottom: 10px;
    }
  }


/* Animation css */

.fade-up,
.fade-down,
.fade-left,
.fade-right,
.fade-in,
.animate-down,
.animate-up {
  opacity: 0;

  transition:
    opacity 2.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2.1s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform, opacity;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}


/* Directions */

.fade-up    { transform: translateY(40px); }
.fade-down  { transform: translateY(-40px); }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.fade-in    { transform: scale(0.94); }


/* Visible state */

.show {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
}


/* Keyframe cinematic versions */

.animate-down,
.animate-up {
  transition: none;
}


/* Top → Down */

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Bottom → Up */

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.show.animate-down {
  animation: slideDownFade 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.show.animate-up {
  animation: slideUpFade 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}


/* Banner center text float animation */
@keyframes floatY {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.float-infinite {
  animation: floatY 6s ease-in-out infinite;
}


@keyframes floatSmooth {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-card {
  animation: floatSmooth 5s ease-in-out infinite;
}




    /* floating badge pip */
    .pip { backdrop-filter: blur(12px); }
 
    /* card hover lift */
    .service-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .service-card:hover { transform: translateY(-6px) scale(1.02) !important; box-shadow: 0 32px 60px -12px rgba(46,125,50,0.18) !important; }
 
    /* stagger fade-up */
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.25s; }
    .delay-3 { animation-delay: 0.4s; }




    /* Modal scroll */

  .modal-scroll-hide {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .modal-scroll-hide::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
  }

  .modal-scroll-hide::-webkit-scrollbar-track {
    display: none !important;
  }

  .modal-scroll-hide::-webkit-scrollbar-thumb {
    display: none !important;
  }
