* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f8f8;
}
.whats-button {
  position: fixed;
  bottom: 20px; /* Lower button (WhatsApp) */
  right: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.whats-button img {
  width: 70px;
  height: 70px;
}

.whats-button:hover {
  transform: scale(1.1);
}





/* Overlay for blur */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 998;
}
.overlay.show {
  display: block;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


.header {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  padding: 12px 24px;
  background-color: white;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
    transition: all 0.3s ease;
}
.header.scrolled {
  top: 0; /* Stick to top */
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ff4500;
}

.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #ff4500;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 5px;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 80px;
  right: 5%;
  width: 90%;
  max-width: 400px;
  border-radius: 20px;
  z-index: 999;
  position: fixed;
}
.mobile-menu a {
  text-decoration: none;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.mobile-menu a:hover {
  color: #ff4500;
}
.mobile-menu.open {
  display: flex;
}

/* Main Container */
.landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  margin-top: 7%;
}
.landing-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 40px;
}
.landing-image {
  flex: 1;
  text-align: center;
}
.landing-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
}

/* Services Section */
.services-container {
  flex: 2;
  text-align: center;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 20px 0;
}
.service {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
  justify-content: center;
  background: rgba(255, 87, 34, 0.1);
  padding: 12px;
  border-radius: 12px;
  transition: 0.3s;
}
.service-icon {
  font-size: 20px;
  color: #ff5722;
}
.service:hover {
  background: rgba(255, 87, 34, 0.2);
}
.paw-icon {
  color: #ff5722;
  font-size: 20px;
  margin-left: 5px;
}
.shop-now-btn {
  padding: 12px 25px;
  background: #ff5722;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.shop-now-btn:hover {
  background: #e64a19;
}

/* Banner for Mobile */
.banner {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header {
    width: 95%;
    padding: 10px 20px;
    border-radius: 40px;
    justify-content: space-between;
  }

  .banner {
    display: block;
    position: relative;
    width: 100%;
    max-height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    margin-top: 18%;
  }

  .banner img {
    width: 100%;
    height: auto;
    filter: brightness(70%);
  }

  .banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    width: 90%;
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service {
    font-size: 14px;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
  }

  .landing-image {
    display: none;
  }
}

@media (max-width: 480px) {
  .services {
    grid-template-columns: 1fr 1fr;
  }

  .landing-container {
    padding: 20px;
    margin-top: 4%;
  }
  .why-choose-us-bg img  {
      height: 1300px;
  }

}
.why-choose-us-section {
position: relative;
background-color: #fff;
padding: 60px 20px;
text-align: center;
overflow: hidden;
}

.why-choose-us-bg  {
position: absolute;
height: 100px;
width: 100%;
top: 0;
left: 0;

}

.why-choose-us-content {
position: relative;
z-index: 2;
max-width: 1200px;
margin: auto;
}

.why-choose-us-content h2 {
font-size: 36px;
color: #ff5722;
margin-bottom: 10px;
}

.why-subheading {
font-size: 20px;
margin-bottom: 40px;
color: #333;
}

.why-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-bottom: 40px;
}

.why-card {
background: #fff8f3;
border-radius: 12px;
padding: 25px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
transition: 0.3s ease;
}

.why-card:hover {
background: #ffece1;
}

.why-card i {
font-size: 32px;
color: #ff5722;
margin-bottom: 15px;
}

.why-card h3 {
font-size: 20px;
color: #222;
margin-bottom: 10px;
}

.why-card p {
font-size: 15px;
color: #555;
}


.dog-cards-section {
padding: 50px 20px;
background-color: #fff;
text-align: center;

}

.section-title {
font-size: 2rem;
margin-bottom: 30px;
color: #ff5722;
font-weight: 600;
}
.section-title i{

margin-top: 1%;
}

.dog-card-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 60px;
}

.dog-card {
position: relative;
width: 250px;
background-color: #fff;
border: 2px solid #ff5722;
border-radius: 12px;
overflow: visible;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease;
height: 303px;

}

.dog-card:hover {
transform: translateY(-8px);
}

.dog-image {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 10px 10px 0 0 ;
border-bottom-left-radius:10px ;
border-bottom-right-radius:10px ;
}

.dog-info {
position: absolute;
bottom: -45px;
left: 10px;
right: 10px;
background-color: #fff;
border: 2px solid #ff5722;
border-radius: 8px;
padding: 12px 10px;
text-align: center;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.dog-name {
font-size: 16px;
color: #ff5722;
margin: 0 0 8px;
font-weight: bold;
}

.dog-whatsapp-btn {
display: inline-block;
background-color: #25D366;
color: #fff;
padding: 6px 14px;
border-radius: 5px;
font-weight: bold;
text-decoration: none;
transition: background-color 0.3s ease;
}

.dog-whatsapp-btn:hover {
background-color: #1ea954;
}


.frame-container {
max-width: 1200px;
margin: 40px auto;
padding: 30px;
border: 5px solid #ffccaa;
border-radius: 20px;
background: linear-gradient(145deg, #fffaf0, #ffe4d1);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
.frame-header {
text-align: center;
color: #e76f51;
margin-bottom: 20px;
}

.frame-header h1 {
font-size: 40px;
}

.frame-header p {
font-size: 18px;
color: #6b705c;
}

/* Slider Section */
.slider {
overflow: hidden;
width: 100%;
position: relative;
margin-bottom: 20px;
height: 300px;
}

.slider-images {
display: flex;
transition: transform 5s ease-in-out;
gap: 20px;
}

.slider-images img {
width: 20%;
object-fit: cover;
aspect-ratio: 1 / 1;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Details Section */
.frame-details {
color: #264653;
background: #faf3e0;
padding: 20px;
border-radius: 15px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
flex: 1;
}

.frame-details h2 {
font-size: 30px;
color: #2a9d8f;
}

.frame-details ul {
list-style: none;
padding: 0;
}

.frame-details ul li {
position: relative;
padding-left: 20px;
margin: 10px 0;
}

.frame-details ul li::before {
content: '✔';
position: absolute;
left: 0;
color: #e76f51;
}

/* Video Box Section */
.video-box {
background-color: #264653;
padding: 20px;
border-radius: 15px;
text-align: center;
color: #ffffff;
flex: 1;
}

.video-box h3 {
font-size: 26px;
margin-bottom: 10px;
}

.video-box iframe {
width: 100%;
height: 300px;
border-radius: 10px;
}

.frame-content {
display: flex;
gap: 30px;
justify-content: space-between;
}

/* Scroll Animations */
.animate-left, .animate-right {
opacity: 0;
transform: translateX(50px);
transition: all 1s ease;
}

.animate-left {
transform: translateX(-50px);
}

.show {
opacity: 1 !important;
transform: translateX(0) !important;
}

/* Responsive Fixes */
@media (max-width: 768px) {
.slider-images img {
  width: 100%;
  margin: 0 auto;
  display: block;
  margin-top: 10px;
}

.slider {
  height: auto;
  margin-top: 10px;
}

.frame-container {
  margin-left: 2%;
  width: 96%;
  padding: 20px;
}

.frame-header h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.frame-header p {
  font-size: 16px;
  margin-bottom: 0;
}

.frame-content {
  flex-direction: column;
  gap: 20px;
}

.frame-details {
  margin-top: 0;
  width: 100%;
}

.video-box iframe {
  width: 100%;
  height: 200px;
}
}





/* Base section styles */
.steps-section {
padding: 60px 20px;
background-color: #fafafa;
text-align: center;
}

.steps-heading {
font-size: 28px;
font-weight: 700;
margin-bottom: 10px;
color: #ff4500;
}

.steps-subheading {
font-size: 16px;
color: #666;
margin-bottom: 40px;
}

/* Steps container */
.steps-wrapper {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}

/* Step card */
.step-card {
background-color: #fff;
border-radius: 16px;
padding: 60px 20px 20px;
width: 280px;
text-align: center;
position: relative;
border: 3px solid #ddd;
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Border color classes */
.yellow-border {
border-color: #ffe066;
}

.blue-border {
border-color: #3da9fc;
}

.orange-border {
border-color: #ff8800;
}

/* Icon styles */
.icon-circle {
position: absolute;
top: -30px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.yellow {
background-color: #ffe066;
}

.blue {
background-color: #3da9fc;
}

.orange {
background-color: #ff8800;
}

.step-content h3 {
margin-top: 20px;
font-size: 18px;
font-weight: 600;
color: #333;
}

.step-content p {
margin-top: 8px;
font-size: 14px;
color: #555;
line-height: 1.5;
}

/* Responsive layout */
@media (max-width: 768px) {
.steps-wrapper {
  flex-direction: column;
  align-items: center;
}

.step-card {
  width: 90%;
}
}


.promise-section {
  padding: 60px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.promise-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: box-shadow 0.3s ease;
}

.promise-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  color: #2ecc71;
}

.promise-item h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: #333;
}

.promise-item p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}



.custom-footer {
  background: #fff8f2; /* Light cream/orange tint */
  color: #333;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 5px solid #ff4500;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
  margin-top: 5%;

}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand h2 {
  font-size: 26px;
  color: #ff4500;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-brand h2:hover {
  color:#ff4500;
}

.footer-brand p {
  max-width: 300px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  color: #222;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #444;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #ff4500;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.footer-links a:hover {
  color: #ff4500;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  color:#ff4500;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #f3d9c9;
  padding-top: 15px;
}


.about-us-section {
  padding: 80px 20px;
  background-color: #fffdf9;
  color: #333;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 32px;
  color: #ff7f50;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}



.contact-section {
  padding: 80px 20px;
  background-color: #fff8f2;
  color: #333;
  border-top: #ff4500 2px solid;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 40%;
}

.contact-info h2 {
  color: #ff7f50;
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: #ff7f50;
  margin-right: 10px;
}

.contact-info a {
  color: #ff7f50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #e6643f;
}

.contact-form {
  flex: 1 1 50%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7f50;
}

.contact-form button {
  padding: 12px;
  background-color: #ff7f50;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e6643f;
}


.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7f50;
}

.contact-form button {
  padding: 12px;
  background-color: #ff7f50;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e6643f;
}
