*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
}
/*image hover animation*/
img{
  overflow: hidden;
  transition: 1s;
}

img:hover{
  transform: scale(1.1);
}

/* Sticky header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1020; /* Ensures it appears above other elements */
  /*background-color: rgb(0, 0, 0); */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

/* Sticky navbar */
.sticky-nav {
  position: sticky;
  z-index: 1010;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.sticky-nav.visible {
  transform: translateY(0); /* Show when scrolling */
}

.sticky-nav.hidden {
  transform: translateY(-100%); /* Hide on load or scroll up */
}

.nav-logo img {
  width: 80px;
  height: auto;
}
.logo {
  font-size: 2rem;
  font-weight: bold;
}

.map {
  width: 100%;
  height: 300px;
  background-color: grey;
}

.footer {
  background-color: #000;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
}

.card img {
  height: 300px;
  object-fit: cover;
}

.dog-info {
  max-width: 70%;
  padding: 1rem;
}

.dog-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.dog-info p {
  font-size: 1rem;
  line-height: 1.5;
}

.pagination {
  text-align: center;
  margin: 2rem 0;
}

.pagination a {
  text-decoration: none;
  color: black;
  margin: 0 0.5rem;
  font-weight: bold;
}

.pagination a:hover {
  text-decoration: underline;
}

.frame {
  width: 100%;
  /*height: 360px;*/
  background-color: honeydew;
  border: 1px solid #ccc;
  /* padding: 1rem; */
  margin: 1rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.mt-10 {
  margin-top: 5rem;
}

/* scroll to top  */
/* Scroll to Top Button Styles */
#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}

#scrollTopBtn:hover {
  background-color: #333;
  color: rgb(255, 255, 255);
}
/* footer style */
.footer {
  background-color: #000000;
  padding: 20px 0;
}
.social-icons a {
  color: #ffffff;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #007bff;
}
.sponsor-icons img {
  width: 50px;
  margin-left: 10px;
}
/* category styles */
.category-banner {
  position: relative;
  /*background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQMvyQS570i8QSO73V3iX6t2gFKcQBaamZ1qdpgLZ_G6gtJsbKpryduNq9V0kB_Z7w6tds&usqp=CAU'); !* Replace with your image URL *!*/
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.category-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}
.category-banner .content {
  position: relative;
  z-index: 2;
}
.category-banner .content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.breadcrumb-container {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}
.breadcrumb {
  background: transparent;
  display: flex;
  justify-content: center;
}
.breadcrumb-item a {
  color: #f8f9fa;
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #ffc107;
}

.dog-item {
  margin-bottom: 2rem;
}
.dog-item img {
  width: 100%;
  height: auto;
  /* max-width: 200px; */
  background-color: #000;
}
.pagination {
  justify-content: center;
}


/* home page owl carousel styles */
.slider-container .frame img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.slider-container .nav-link {
  text-decoration: none;
  font-weight: bold;
  color: #ffffff;
  display: block;
  margin-top: 5px;
}
.slider-container .nav-link:hover {
  color: #b4b5b6;
}




.owl-dots {
  display: flex !important;
  justify-content: center;
  margin-top: 15px;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #ffffff!important;
  border-radius: 50%;
  cursor: pointer;
  
}
.owl-dots .owl-dot.active {
  background: #007bff;
}

.footer-link {
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: 0 0;
  border: 0;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.hidden {
  display: none;
}

.visible {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.padding-10{
  padding: 8px 0;
}

.developer-link {
  color: #ff5733;
  font-weight: bold;
  text-decoration: none;
}

.developer-link:hover {
  color: #c70039;
  text-decoration: underline;
}
