:root {
  --purple: #f59719;
  --teal: #db3123;
  --teal-light: #00a3a3;
  --white: #F9F9F9;
  --red: #FF3333;
  --danger: #e74c3c;
  --gray: #f0f2f5;
  --gray-dark: #e0e0e0;
  --shadow: 0 4px 6px rgba(245, 151, 25, 0.1);
  --shadow-lg: 0 10px 20px rgba(245, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-base: 'Open Sans', sans-serif;
  --font-heading: 'Lato', sans-serif;
}


/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #dce3ea;
  color: #333;
  line-height: 1.6;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

/* Header */
header {
  background-color: var(--purple);
  color: white;
  box-shadow: var(--shadow);
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  z-index: 1000;

}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

  .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .logo {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
  }

  /* Logo Styles */
  .logo-img {
    height: 100px; 
    width: auto;
    transition: var(--transition);
  }

  .logo:hover .logo-img {
    transform: rotate(-15deg) scale(1.1);
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
  }

  .slogan {
    font-size: 0.8rem;
    color: white;
    font-weight: 400;
    font-family: var(--font-base);
  }
 
/* ============================
   Navigation Styles
============================ */
.nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  padding: 0;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--teal);
}

/* ============================
   Hamburger Menu Styles
============================ */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  line-height: 44px;
  text-align: center;
  color: white;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

/* Animated Hamburger Icon */
.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  position: absolute;
  transition: transform 0.15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger.active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::before {
  transform: translateY(10px) rotate(0deg);
  opacity: 0;
}

.hamburger.active .hamburger-inner::after {
  transform: translateY(-10px) rotate(-90deg);
}

@media (max-width: 992px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1rem;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: var(--purple);
    padding: 1rem;
    margin-top: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  .nav.show {
    display: flex;
  }

  .nav li {
    margin: 0.5rem 0;
    text-align: center;
  }
}
/* ============================
   Hero Section
============================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 4rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-radius: 0px 0px 25px 25px;
}

.hero-slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 18s infinite;
  transition: opacity 1s ease-in-out;
}

.slide1 {
  background-image: url('../images/dogg1.jpg');
  animation-delay: 0s;
}

.slide2 {
  background-image: url('../images/cats.jpg');
  animation-delay: 6s;
}

.slide3 {
  background-image: url('../images/dogs.jpg');
  animation-delay: 12s;
}

@keyframes slideShow {
  0%, 33.33% { opacity: 1; }
  33.34%, 100% { opacity: 0; }
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1rem;
  background: rgba(0,0,0, 0.9);
  border-radius: 25px;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-overlay .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  color: var(--purple);
}

.lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}


/* ============================
   Button Styles
============================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--purple);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background-color: var(--teal);
  color: white;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background-color: white;
  color: var(--teal);
}

.btn-outlined {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outlined:hover {
  background-color:var(--teal);
  color: white;
}

.cta-buttons .btn {
  margin: 0 0.5rem;
}

/* ============================
   Features Section
============================ */
.features {
  padding: 4rem 1rem;
  background-color: var(--white);
}

.features h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--purple);
  font-size: 2.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.icon-lg {
  font-size: 2.5rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

/* ============================
   Animal Section
============================ */
.pet-sections h1{
  text-align: center;
  margin-bottom: 2rem;
  color: var(--purple);
  font-size: 2.5rem;
  width: 100%;
}

.pet-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  justify-content: space-between;
}

.animal-bg-section {
  padding: 3rem 1rem;
  background-size: cover;
  background-position: center;
  width: 32%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  transition: var(--transition);
}

.dogs-bg {
  background-image: url('../images/puppies.jpg');
}

.cats-bg {
  background-image: url('../images/cat1.jpg');
}

.others-bg {
  background-image: url('../images/rabbit.jpg');
}

.cards{
  background-color: rgba(0,0,0, 0.85);
  color: white;
  flex: 1 1 48%;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 95%;
  
}

.cards h3{
  color: var(--purple);
}

.cards:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.service-link {
  text-decoration: none;
}

/* ============================
   Services Section
============================ */

.services-section {
  background-color: var(--gray);
  color: #333;
}

.services-section h2 {
  text-align: center;
  color: var(--purple);
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.services-section .intro {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  text-align: center;
  font-size: 1.1rem;
  color: #444;
}

.service-block {
  margin-bottom: 3rem;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: black;
}

.service-block h3 {
  color: var(--teal);
  margin-bottom: 1rem;
}

.service-block .coming-soon {
  font-size: 0.9rem;
  color: var(--red);
  margin-left: 0.5rem;
}

.service-list {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.service-list li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.note {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-top: 1rem;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple);
}

.card p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1rem;
}

.card ul {
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.card li {
  margin-bottom: 0.5rem;
}

.card a.btn {
  margin-top: 1rem;
  display: inline-block;
}

.no-bullets {
  text-align: left;
  padding-left: 0;
}

/* ============================
   About Us Section
============================ */
.about-us {
  padding: 1rem;
  background-color: var(--gray);
  text-align: center;
}

.about-us h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--purple);
  font-size: 2.5rem;
}

.about-us p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0.5rem auto;
  line-height: 1.6;
}

/*
@media (max-width: 768px) {
  .pet-grid {
    flex-direction: column;
  }

  .animal-bg-section {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .animal-bg-section {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .animal-bg-section {
    width: 100%;
  }
}
*/

/* ============================
   Ad Sidebar
============================ */
.ad-sidebar-floating {
  position: fixed;
  top: 80px;
  right: 20px;
  left: 0;
  width: 300px;
  height: 80%;
  background-color: var(--purple);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  z-index: 999;
  color: white;
  border-radius: 0 8px 8px 0;
  transition: transform 0.3s ease;
}

.ad-sidebar-floating.left {
  left: 0;
  transform: translateX(0);
}

.ad-sidebar-floating.collapsed {
  transform: translateX(-100%);
}

.ad-sidebar-floating .ad {
  margin-bottom: 2rem;
  text-align: center;
}

.ad-sidebar-floating img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.ad-sidebar-floating h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--purple);
}

/* Toggle Button */
.toggle-ad-panel {
  position: fixed;
  top: 100px;
  left: 220px;
  background-color: var(--purple);
  color: white;
  padding: 0.5rem;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  z-index: 1000;
  transition: left 0.3s ease;
}

.ad-sidebar-floating.collapsed + .toggle-ad-panel {
  left: 0;
}

.toggle-ad-panel i {
  transition: transform 0.3s ease;
}

.ad-sidebar-floating.collapsed + .toggle-ad-panel i {
  transform: rotate(180deg);
}

/* Carousel Wrapper */
.ad-carousels-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ad-carousel {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
}

.ad-carousel .ad {
  position: absolute;
  margin-bottom: 1rem;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0.1rem;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  text-align: center;
  box-sizing: border-box;
}

.ad-carousel .ad.active {
  opacity: 1;
  z-index: 1;
  transform: translateX(0);
  position: relative;
}

/* Ad content */
.ad img {
  width: 100%;
  max-height: 190px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.ad h4 {
  font-size: 1rem;
  color: white;
  position: relative;
  z-index: 1;
  margin: 0.5rem 0;
}

.ad a.btn-outline {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--teal);
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
}

.ad a.btn-outline:hover {
  background-color: var(--teal);
  color: white;
}

.delivery-info {
  text-align: center;
  margin: 1rem 0;
}

.delivery-btn {
  background-color: var(--teal);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.delivery-btn:hover {
  background-color: var(--teal-light);
  transform: translateY(-2px);
}

/* Branding Footer */
.ad-branding {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: black;
  border-top: 1px solid var(--gray-dark);
  padding-top: 0.75rem;
  ;
}


/* ============================
   QR Code
============================ */
.qr-code-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.qr-code {
  width: 100px;
  height: 100px;
  margin-bottom: 0.5rem;
}

.qr-label {
  font-size: 0.8rem;
  color: var(--purple);
  font-weight: bold;
}

.qr-link {
  text-decoration: none;
  text-align: center;
}

/* Responsive 
@media (max-width: 768px) {
  .ad-sidebar-floating,
  .toggle-ad-panel {
    display: none;
  }
}
*/

/* ============================
   Footer
============================ */
.footer {
  background-color: var(--purple);
  color: var(--white);
  padding: 3rem 1rem ;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--teal-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.footer-logo-column {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--teal);
}

.footer-logo-img {
  height: 250px;
  width: 250px;
  object-fit: contain;
  margin-bottom: 1rem;
  padding: 1rem;
}

.footer-qr-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-qr-code {
  width: 120px;
  height: 120px;
  background-color: white;
  padding: 0.5rem;
  border-radius: 5px;
}


.footer-nav,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.footer-contact li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social a {
  font-size: 1.2rem;
  margin-right: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--teal);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: white;
}

/* ============================
   Chatbot Button
============================ */
.chatbot-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--teal);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 1000;
  transition: var(--transition);
}

.chatbot-button:hover {
  background-color: var(--teal-light);
}

/* ============================
   Animations
============================ */
.fade-in {
  animation: fadeIn ease 1s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ============================
   Responsive Adjustments
============================ */

/* Tablets & below (<= 992px) */
@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
    padding: 1rem;
  }
  
  .logo-container {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  /* Base mobile nav hidden */
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: var(--purple);
    padding: 1rem;
    margin-top: 0.5rem;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 999;
  }
  
  /* Show nav when toggled */
  .nav.show {
    display: flex;
  }
  
  .nav li {
    margin: 0.5rem 0;
  }
  
  .hamburger {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1rem;
  }
  
  /* Ad panel hidden on tablets/mobiles */
  .ad-sidebar-floating,
  .toggle-ad-panel {
    display: none !important;
  }
  
  /* Footer stacking */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Pet sections */
  .pet-grid {
    flex-direction: column;
  }
  
  .animal-bg-section {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  /* Features grid */
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Mobiles (<= 768px) */
@media (max-width: 768px) {
  .hero {
    padding: 6rem 0;
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero .lead {
    font-size: 1.1rem;
  }
  
  .cta-buttons .btn {
    display: block;
    margin: 1rem auto;
  }

  .logo-img {
    height: 50px;
  }
  
  .brand-name {
    font-size: 1.2rem;
  }
  
  .qr-code-container {
    bottom: 70px;
    right: 10px;
  }
  
  .footer-logo-column,
  .footer-qr-column {
    align-items: center;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Small mobiles (<= 480px) */
@media (max-width: 480px) {
  .hero-overlay h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    font-size: 0.8rem;
  }

  .cards {
    padding: 1.5rem;
  }
  
  .service-block {
    padding: 1.5rem;
  }
}