* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f6fb;
  padding-top: 80px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  height: 100px;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
/* NAVBAR FIX */




/* NAV LINKS */
.navbar nav {
  display: flex;
  gap: 40px;
}


/* ACTIVE LINK */
.navbar nav a.active {
  color: #7b61ff;
}

/* CALL BUTTON */
.call-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BODY OFFSET (VERY IMPORTANT) */
body {
  padding-top: 90px;
}

.call-btn {
  background: #9b7cf4;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  min-height: 100vh;
}

/* LEFT */
.hero-left {
  width: 50%;
}

.hero-left h1 {
  font-size: 60px;
  color: #1b1335;
  line-height: 1.2;
}

.hero-left p {
  margin-top: 30px;
  font-size: 20px;
}

.hero-left h2 {
  font-size: 50px;
  margin-top: 10px;
}

/* RIGHT */
.hero-right {
  width: 50%;
  display: flex;
  justify-content: center;
}

/* CIRCLE DESIGN */
.circle {
  width: 400px;
  height: 400px;
  background: #9b7cf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.circle::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 2px solid #9b7cf4;
  border-radius: 50%;
}

.circle img {
  width: 90%;
  border-radius: 20px;
}
/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* HERO IMAGE FLOAT */
.circle {
  animation: float 4s ease-in-out infinite;
}

/* PAW STYLE */
.paw {
  width: 40px;
  position: absolute;
  opacity: 0.6;
  animation: float 5s ease-in-out infinite;
}

.paw1 {
  top: 100px;
  left: 60%;
}

.paw2 {
  bottom: 100px;
  right: 50px;
}
.pets-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -120px; /* pulls image up */
  margin-bottom: -80px; /* overlaps next section */
  position: relative;
  z-index: 5;
}

.pets-divider img {
  width: 600px;
  max-width: 90%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));

}
.services-clean {
  padding: 100px 60px;
  text-align: center;
  background: #f7f8fc;
}

/* GRID */
.services-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* CARD */
.service-clean-card {
  padding: 60px 20px;
  border-radius: 25px;
  transition: 0.4s ease;
}

/* BACKGROUND COLORS */
.card1 {
  background: #dceeee;
}

.card2 {
  background: #f3e7e7;
}

.card3 {
  background: #ebe8f5;
}

/* ICON */
.icon {
  font-size: 70px;
  margin-bottom: 20px;
}

/* TEXT */
.service-clean-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

/* HOVER */
.service-clean-card:hover {
  transform: translateY(-10px);
}

/* SECTION */
.about-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 100px;
  gap: 80px;
  background: #f5f6fb;
  overflow: hidden;
  position: relative;
}

/* IMAGE */
.about-img {
  width: 50%;
  transform: translateX(-250px);
  opacity: 0;
}

.about-img img {
  width: 100%;
  border-radius: 25px;
}

/* TEXT */
.about-text {
  width: 50%;
  transform: translateX(250px);
  opacity: 0;
}

.about-text h2 {
  font-size: 44px;
  color: #1b1335;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #555;
}

/* POINTS */
.about-points div {
  margin-bottom: 12px;
  font-weight: 500;
}
.about-img,
.about-text {
  position: relative;
  z-index: 2;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  background: #9b7cf4;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
}

/* ANIMATION ACTIVE */
.about-new.show .about-img {
  transform: translateX(0);
  opacity: 1;
  transition: all 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-new.show .about-text {
  transform: translateX(0);
  opacity: 1;
  transition: all 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.4s;
}

/* SIMPLE SUBTLE BACKGROUND */
.about-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(155,124,244,0.08),
    transparent 70%
  );

  animation: lightMove 6s linear infinite;

  z-index: 1;
}
@keyframes moveBg {
  0% { transform: translate(0,0); }
  50% { transform: translate(120px, 80px); }
  100% { transform: translate(0,0); }
}
@keyframes lightMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
/* BACKGROUND IMAGES */
.bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  opacity: 1;
  z-index: 1;

  animation: floatShape 6s ease-in-out infinite;
}

.bg-cat {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  z-index: 1;

  animation: floatCat 6s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatShape {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes floatCat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-25px); }
  100% { transform: translateY(0px); }
}
/* SECTION HEIGHT (IMPORTANT) */
.services-grid-section {
  padding: 120px 80px;
  text-align: center;
  background: #f9fafc;
  position: relative;
  overflow: hidden;
}

/* TITLES */
.small-title {
  color: orange;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 48px;
  color: #1b1335;
  margin-bottom: 70px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 50px 25px;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

/* ICON */
.icon-box {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

/* COLORS */
.purple { background: #eee6ff; }
.beige { background: #f4ede6; }
.green { background: #dff5f1; }
.pink { background: #fdeeee; }

/* TEXT */
.service-card h3 {
  margin-bottom: 10px;
  color: #1b1335;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.service-card a {
  text-decoration: none;
  font-weight: 500;
  color: #9b7cf4;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ACTIVE CARD (LIKE IMAGE CENTER ONE) */
/* DEFAULT FADED LOOK */
/* NORMAL STATE (CLEAR & VISIBLE) */
/* NORMAL STATE */
.service-card {
  background: #fff;
  padding: 50px 25px;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  opacity: 1;
}

/* FADE ONLY SLIGHTLY */
.services-grid:hover .service-card {
  opacity: 1; /* NOT TOO LOW */
}

/* ACTIVE CARD */
.service-card:hover {
  opacity: 1;
  transform: translateY(-10px) scale(1.02);

  border: 2px solid #6ed3c1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
/* PET IMAGES */
.pet {
  position: absolute;
  width: 180px;
  z-index: 1;
  pointer-events: none; /* IMPORTANT */
}

/* LEFT SIDE */
.pet-left {
  left: 0;
  top:0;
  animation: floatLeft 6s ease-in-out infinite;
  width: 220px;
}

/* RIGHT SIDE */
.pet-right {
  right: 0;
  bottom: 0;
  animation: floatRight 6s ease-in-out infinite;
  width:220px;
}

/* FLOAT ANIMATION */
@keyframes floatLeft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes floatRight {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* GALLERY SECTION */
.gallery {
  padding: 120px 40px;
  background: #f7f8fc;
  text-align: center;
  padding-top: 120px;   /* space from above section */
  padding-bottom: 80px;
}
.gallery h2 {
  position: relative;
  top: -80px;
}
/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* IMAGE BOX */
.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* OPTIONAL SHADOW */
.gallery-item:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.gallery {
  position: relative;
  padding: 120px 80px;
  background: #f7f8fc;
  overflow: hidden;
}

/* COMMON STYLE */
.gallery-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* TOP RIGHT (DOG) */
.top-right {
  top: -10px;
  left: 70px;   /* push outside */
  width: 180px;

  animation: floatTop 6s ease-in-out infinite;
}

/* BOTTOM RIGHT (SHAPE) */
.bottom-right {
  bottom: 80px;
  right: -30px;  /* push outside */
  width: 150px;

  opacity: 0.3;

  animation: floatBottom 8s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes floatTop {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

@keyframes floatBottom {
  0% { transform: translateY(0); }
  50% { transform: translateY(15px); }
  100% { transform: translateY(0); }
}

.footer {
  background: #1b0836;
  color: #ccc;
  padding: 80px 60px 20px;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

/* LOGO */
.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

/* TEXT */
.footer-col p {
  line-height: 1.7;
  font-size: 14px;
}

/* HEADINGS */
.footer-col h3 {
  color: #fff;
  margin-bottom: 20px;
}

/* LIST */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #9b7cf4;
}
.footer-col ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #9b7cf4;
  padding-left: 5px;
}
/* CONTACT NUMBER */
.footer-contact h3 {
  color: #fff;
  margin-top: 20px;
}

.footer-contact span {
  font-size: 13px;
  color: #aaa;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}
.footer-link {
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
  transition: 0.3s;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}


.footer-link:hover {
  color: #a78bfa; /* light purple hover */
}
.policy-page {
  padding: 80px 60px;
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

.policy-page h1 {
  margin-bottom: 20px;
}

.policy-page h3 {
  margin-top: 20px;
}
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}
.social-icons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #fff;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
}

/* Brand colors */
.social-icons a:nth-child(1):hover {
  background: #E4405F;
  color: #fff;
}

.social-icons a:nth-child(2):hover {
  background: #FF0000;
  color: #fff;
}
.social-icons a:nth-child(3):hover {
  background: #FF0000;
  color: #fff;
}
