@import url('https://fonts.googleapis.com/css2?family=Allura&family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
  text-decoration: none;
}
body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}
header {
  width: 100%;
  height: 12vh;
  /* border: 1px solid red; */
  display: flex;
  justify-content: space-between;
  position: relative;
}
.ghost{
  width: 70px;
  height: 70px;
}
.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
}
.links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40%;
  transition: 0.3s ease-in-out all;
}
.links a {
  text-decoration: none;
  color: black;
  font-size: 1.2rem;
  padding: 0 10px;
  display: flex;
  align-items: center;
  transition: 0.3s all ease-in-out;
}
.links a:hover {
  color: rgb(13, 147, 184);
}
.menu:focus, .submenu:focus{
    color: rgb(13, 147, 184);
}
.hamburger-container {
  display: flex;
  align-items: center;
  width: 2rem;
}
.hamburger-menu {
  font-size: 20px;
  cursor: pointer;
  /* padding: 1rem;
  padding-right: 1rem; */
  display: none !important;
  /* border: 1px solid red; */
}
.nav-btn-container {
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.nav-btn-container .cta {
  padding: 10px 20px;
  border: none;
  background-color: grey;
  color: white;
  cursor: pointer;
  transition: 0.3s ease-in-out all;
}
.cta:hover {
  transform: scale(1.1);
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  z-index: 100;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
}
.dropdown-content a {
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  transition: background 0.2s ease;
}
.dropdown-content a:hover {
  background-color: #f2f2f2;
  color: rgb(13, 147, 184);
}
.dropdown:hover .dropdown-content {
  display: flex;
}

/* MOBILE MENU */
.mobile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black;
  width: auto;
  gap: 20px;
  padding: 20px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(150%);
  transition: 0.3s ease-in-out all;
  z-index: 100000;
}
.fa-xmark {
  color: white;
  align-self: flex-end;
  padding-right: 20px;
  cursor: pointer;
}
.mobile-header .menu {
  text-decoration: none;
  font-size: 20px;
  color: white;
}
.mobile-header .menu:hover {
  color: rgb(13, 147, 184);
}

/* MOBILE DROPDOWN */
.mobile-header .dropdown-content {
  position: static;
  background-color: transparent;
  box-shadow: none;
  display: none;
  width: 100%;
}
.mobile-header .dropdown-content a {
  color: white;
  padding-left: 20px;
}
.mobile-header .dropdown-content a:hover {
  color: rgb(13, 147, 184);
}

#visitor-counter {
  color: black;
  padding: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
footer {
  width: 100%;
  height: auto;
  background-color: white;

}
.header-advert {
  width: 50%;
  /* border: 1px solid blue; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 30px;
}
.header-advert h1 {
  font-size: 2.5rem;
  color: black;
  font-weight: bolder;
}
.header-advert p {
  font-size: 1.2rem;
  color: black;
  font-weight: 500;
} 
.explore{
    padding: 10px 25px;
    font-size: 1.2rem;
    border: none;
    background-color: black;
    color: white;
    cursor: pointer;
    transition: 0.3s ease-in-out all;
    border-radius: 20px;
    transition: 0.3s all ease-in-out;
}
.explore:hover{
  background-color: white;
  color: black;
}


.advert-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle,#808080, #c8c8c8, #fff);
  /* border: 1px solid red; */
  padding: 8rem 0;
}
.newsletter-container{
  background: linear-gradient(#80808085, #c8c8c8, #fff);
  width: 100%;
  height: auto;
  padding: 8rem 0;
  display: flex;
}
.newsletter-txt-cont{
  /* border: 1px solid green; */
  width: 50%;
  display: flex;
  justify-content: center;

}
.newsletter-input-cont {
  /* border: 1px solid blue; */
  width: 50%;
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden; /* makes them look like one connected box */
  padding: 0 40px;
}

.newsletter-input-cont input {
  height: 40px;
  border: none;
  padding: 0 10px;
  outline: none;
}

.newsletter-input-cont button {
  background-color: #ccc; /* grey color */
  color: #000;
  border: none;
  padding: 0 15px;
  height: 40px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-input-cont button:hover {
  background-color: #999; /* darker grey on hover */
}

.newsletter-txt-wrap{
  width: 40%;
  font-weight: 500;
}

.main-footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.footer-h1{
    color: black;
    
}
.footer-logo-column{
    display: flex;
    width: 300px;
    height: 25vh;
    flex-grow: 1;
    padding-left: 20px;
    align-items: center;
}
.footer-support-column,
.footer-product-column,
.footer-contact-column {
  width: 300px;
  height: 25vh;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  gap: 10px;
}
.footer-support-column p:nth-child(1),
.footer-product-column p:nth-child(1),
.footer-contact-column p:nth-child(1) {
  font-size: 20px;
  font-weight: bold;
  cursor: default;
}
.footer-product-column p{
    cursor: pointer;
}
.copyright-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Ticker container (example) */
#ticker {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  background: #0b1220;      /* tweak to match site */
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  position: relative;
}

/* inner text that will animate */
.ticker-text {
  display: inline-block;
  padding-left: 100%;
  /* animation */
  animation: ticker-scroll 18s linear infinite;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
#ticker:hover .ticker-text {
  animation-play-state: paused;
}

/* @keyframes scroll {
  from { transform: translateX(350%); }
  to { transform: translateX(-100%); }
} */

/* Home / About */
#home, #about, #categories, #contact, #gallery {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home { 
    background-color: teal; 
    color: green; 
}
#categories { 
    background-color: purple; 
    color: white;
 }
#contact { 
    background-color: grey; 
    color: yellow;
 }
#gallery { 
    background-color: orange; 
    color: indigo;
 }

 /* About Section */

 .about-section {
  width: 100%;
  padding: 6rem 0;
  background: #f9f9f9; /* subtle background, optional */
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* helps stack on smaller screens */
}

.about-heading {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-heading h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #222;
  text-align: center;
}

.about-text {
  flex: 2;
  min-width: 300px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.about-text p {
  margin-bottom: 1rem;
}

/* Home CSS */
/* Body */
.section1 {
  width: 100%;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, white, gray);
}
.mega-container {
    width: 90%;
    /* border: 1px solid red; */
    display: flex;
    flex-wrap: wrap;
}

.owl-carousel{
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
.container1 {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /*✅ allows content to wrap
  gap: 30px; /* adds breathing space when stacked */
  
}


.text1 {
  /* border: 1px solid red; */
  width: 50%;
}
.text1 h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: black;
}

.img1 {
 width: 50%;
 height: 80vh;
 /* border: 1px solid red; */
 
}

.img1 img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.btncontainer {
  margin-top: 20px;
  width: 100%;
  display: flex;
  gap: 20px;
}

.btn:nth-of-type(1){
  background-color: white;
  color: black;
  padding: 10px;
  width: 40%;
  border-radius: 10px;
  border: none;
  transition: 0.3s ease;
}
.btn:nth-of-type(2){
  background-color: black;
  color: white;
  padding: 10px;
  width: 40%;
  border-radius: 10px;
  border: none;
  transition: 0.3s ease;
}

.btn:nth-of-type(1):hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.btn:nth-of-type(2):hover {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

/* Improve image handling and carousel dots */
.img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* preserve aspect ratio and fill the area */
  display: block;
}

/* Brand logo container styles */
.img2 {
  width: 30%;
  height: 30%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.img2:hover {
  transform: translateY(-5px);
}

.img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Brand Section Styles */
.brand-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, gray, white);
  text-align: center;
}

.brand-section h2 {
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #333;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 20%;
}

.brand-logo {
  width: 50%;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  border-radius: 100%;
}

.brand-logo:hover {
  filter: grayscale(0%);
}

.brand-item span {
  font-size: 0.9rem;
  color: #666;
  font-family: "Poppins", sans-serif;
}

/* Make sure Swiper container has proper dimensions */
.brandSwiper {
  width: 100%;
  padding: 20px 0;
}

/* section 2 */
.section2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10%;
}
.section2 .mega-container h2 {
  /* margin-bottom: 40px; */
  font-size: 2.2rem;
  color: #333;
  /* border: 1px solid red; */
}

.container2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.text2{
  width: 45%;
  margin-top: 0;
}
.text2 p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
.img3 {
  width: 45%;
  height: 60vh;
  border-radius: 10px;
}
.img3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    border-radius: 10px;
}

/* counter section */
.counter-container {
  width: 100%;
  display: flex;
  gap: 5px;
  /* border: 1px solid green; */
}
.counter-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
}
.counter-box h2 {
  font-size: 2.5rem;
  color: black;
}
.counter-box p {
  font-size: 1rem;
  color: black;
}

/* section 3 */
.section3 {
  padding-top: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section3 .mega-container {
  border-right: 3px solid grey;
}

.text3 {
  text-align: left;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 10%;
}

.text3 h2 {
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: #333;
}
.text3 p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
.product-container {
    padding-top: 5%;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
    display: flex;
    /* border: 1px solid red; */
    justify-content: center;
  }
.product_item {
  border-radius: 15px;
  max-width: 360px;
  padding: 50px 10px 10px 10px;
  height: 90vh;
  position: relative;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   margin-top: 10%;
  }
  .product_item:nth-of-type(1){
    background: linear-gradient(to bottom, rgb(196, 226, 250), gray)
}
.product_item:nth-of-type(2){
   background: linear-gradient(to bottom, gray, black)
}
.product_item:nth-of-type(3){
   background: linear-gradient(to bottom,rgb(196, 250, 206), gray)
  }
  .product-text {
  text-align: left;
  width: 80%;

}
.product-text h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #333;
}
.product-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
.product-text p:nth-child(2) {
  color: #ffffff;
}
.img4 {
  width: 50%;
  height: 50%;
   display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20%;
}
.img4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

 .btncontainer2 {
  margin-top: 30px;
  width: 20%;
}
 .btncontainer2 .btn{
  background-color: black;
  color: white;
  padding: 15px;
  width: 100%;
  border-radius: 10px;
  border: none;
  transition: 0.3s ease;
  margin-top: 20px;
}

 .btncontainer2 .btn:hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

/* Gallery Section Styles */
.gallery-section {
  margin-top: 10%;
  background: linear-gradient(to bottom, white, gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 0;
}
.gallery-section .mega-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /* border: 1px solid red; */
  border-right: 3px solid grey;
}

.gallery-header {
  /* border: 1px solid red; */
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
}

.gallery-header p {
  font-size: 1rem;
  color: #555;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  justify-content: center;
  align-items: center;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 20px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.8;
  font-family: "Poppins", sans-serif;
}

/* ACCORDION PAGE */

/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, gray, white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 1rem;
  color: #555;
  font-family: "Poppins", sans-serif;
}

.accordion-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 0 auto;
}

.accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.accordion-header {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  font-family: "Montserrat", sans-serif;
}

.accordion-header span {
  flex: 1;
}

.accordion-header i {
  color: #333;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.accordion-item.active .accordion-header i {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 30px;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding-bottom: 20px;
}

.accordion-content p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}




/* Media Queries */
@media (max-width: 992px) {
  .faq-header h1 {
      font-size: calc(var(--LARGE_FONT) - 0.5rem);
  }
}

@media (max-width: 768px) {
  .faq-section {
      padding: 6rem 1.5rem;
  }

  .faq-header h1 {
      font-size: calc(var(--LARGE_FONT) - 1rem);
  }

  .faq-header p {
      font-size: calc(var(--DEFAULT_FONT) - 0.1rem);
  }

  .accordion-header {
      font-size: calc(var(--DEFAULT_FONT) - 0.1rem);
      padding: 1.2rem;
  }
  .text1{
    width: 100%;
  }
  .img1{
    /* width: 100%; */
    display: none;
  }
  .img2{
    display: none;
  }
  .container2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.text2, .img3 {
  width: 100%;
}
.counter-container {
  width: 100%;
}
.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  }
  .btncontainer2{
    width: 100%;
  }
  .text3 {
  text-align: left;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 10%;
}

  
}

@media (max-width: 480px) {
  .faq-section {
    padding: 4rem 1rem;
  }
  
  .gallery-grid{
    display: flex;
    flex-wrap: wrap;
  }
  .faq-header h1 {
      font-size: calc(var(--LARGE_FONT) - 1.5rem);
  }

  .faq-header p {
      font-size: calc(var(--DEFAULT_FONT) - 0.2rem);
  }

  .accordion-header {
      font-size: calc(var(--DEFAULT_FONT) - 0.2rem);
      padding: 1rem;
  }

  .accordion-content p {
      font-size: calc(var(--DEFAULT_FONT) - 0.2rem);
  }
}

/* Add responsive padding */

/* Home CSS ends */

/* Responsive: stack on small screens */
@media (max-width: 768px) {
   .accordion-container {
        width: 95%;
    }
    
    .accordion-header,
    .accordion-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
  .about-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .about-heading h2 {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }
}

              
.about-text {
    flex: 2;
    min-width: 250px;
}
                
.about-text p {
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: rgb(5, 5, 5);
    font-weight: 500;
    display: flex;
}
                    
hr {
    border: none;
    border-top: 1px solid #eee;
}
                                              
.vision-section {
  max-width: 1200px;
  margin: 0 auto;
}

.vision-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 15rem;
}

.vision-text {
  flex: 1;
  min-width: 250px;
}

.vision-text h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.vision-text p {
  font-size: 1.2rem;
  color: rgb(5, 5, 5);
  padding-top: 1.5rem;
  font-weight: 500;
}

.vision-image {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
}

.vision-image img {
  width: 100%;
  max-width: 500px;  
  height: auto;
  object-fit: contain;
}

.mission-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    padding: 18rem 0 10rem 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    gap: 5rem;
}


.mission-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


.mission-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    padding-top: 7rem;
}


.mission-text {
    flex: 2;
}


.mission-text h2 {
    font-size: 2.8rem;
    color: black;
    margin-bottom: 0.5rem;
}


.mission-text p {
    font-size: 1.1rem;
    color: rgb(5, 5, 5);
    line-height: 1.6;
    padding-top: 1.5rem;
    font-weight: 500;
}

.container {
    background: radial-gradient(circle, #e0e0e0 0%, #999999 100%);
    padding: 20px;
    max-width: 100%;
    margin-top: 15rem;
}

.content{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 15rem 0;
}

/* Products page */
.product-header {
  width: 100%;
  height: auto;
  padding: 0 0 50px 0;
}

.product-title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(#adadad, #fff);
  padding: 100px 0;
}

.product-title p:nth-child(1) {
  font-size: 30px;
  font-weight: 700;
}

.product-title p:last-child {
  font-size: 17px;
  text-align: center;
  padding: 0 20px;
}

.category-title {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px;
}

.category-title p {
  font-size: 15px;
}

.pet-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.pet-card {
  width: 300px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pet-card img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.pet-mini-info {
  width: 100%;
  color: black;
  padding: 10px 0;
  font-size: 12px;
  display: flex;
  justify-content: space-around;
}
/* Products page ends */

/* Contact Page */

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-container .header {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.contact-container .header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.contact-container .header p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding: 40px;
}
.content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }

/* @media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }
} */

/* Form Styles */
.form-section h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

input.error,
textarea.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

input.success,
textarea.success {
    border-color: #28a745;
}

.error-message {
    font-size: 12px;
    color: #dc3545;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Info Section Styles */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card {
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.info-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-card h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #000;
}

.info-card-content {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    background-color: white;
}

.checkbox.checked {
    background-color: #000;
    border-color: #000;
    color: white;
}

.checkbox::after {
    content: '✓';
    font-size: 12px;
    font-weight: bold;
}

.phone-number {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-top: 8px;
}

.address-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.address-lines p {
    font-size: 13px;
    color: #666;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
    font-size: 13px;
}

.success-message.show {
    display: block;
}

/* Visit Us Section Styles */
.visit-container {
    max-width: 1200px;
    margin: 60px auto 0;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
}

@media (max-width: 768px) {
    .visit-container {
        padding: 40px 20px;
        margin: 40px auto 0;
    }
}

.visit-container .header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0;
    background-color: transparent;
}

.visit-container .header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.visit-container .header p {
    font-size: 14px;
    color: #999;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .visit-container .header h2 {
        font-size: 24px;
    }
}

/* Responsive Map Container */
.map-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.btncontainer2 {
  margin: 0 20px;
  text-align: center;
  /* border: 1px solid red; */
  width: 20%;
}

.pet-section .btncontainer2 {
  padding: 30px 0 50px 0;
}
/* Gallery styles */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .polysite-gallery-page {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background-color: #fff;
        }

        /* Header Section */
        .polysite-gallery-header {
            text-align: center;
            padding: 60px 20px 40px;
            background-color: #f8f9fa;
        }

        .polysite-gallery-header h1 {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-top: -20px;
        }

        .polysite-gallery-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Featured Products Section */
        .polysite-featured-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .polysite-featured-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            color: #1a1a1a;
        }

        .polysite-products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .polysite-product-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .polysite-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .product-img-6 {
            transform: scale(2);
        }

        .polysite-product-image {
            width: 100%;
            max-width: 150px;
            height: 200px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .polysite-product-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .polysite-product-specs {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 5px;
            line-height: 1.6;
        }

        .polysite-product-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2563eb;
            margin-top: 15px;
        }

        .polysite-contact-quote {
            font-size: 1rem;
            font-weight: 600;
            color: #2563eb;
            margin-top: 15px;
        }

        /* Sustainability Section */
        .polysite-sustainability-section {
            background-color: #f8f9fa;
            padding: 60px 20px;
        }

        .polysite-sustainability-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .polysite-sustainability-title {
            font-size: 2rem;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .polysite-sustainability-text {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
        }

        .polysite-sustainability-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
        }

        /* Manufacturing Gallery Section */
        .polysite-manufacturing-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .polysite-manufacturing-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .polysite-manufacturing-subtitle {
            text-align: center;
            font-size: 1rem;
            color: #666;
            margin-bottom: 40px;
        }

        .polysite-gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .polysite-gallery-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s;
        }

        .polysite-gallery-image:hover {
            transform: scale(1.05);
        }

        /* Our Products Section */
        .polysite-our-products-section {
            padding: 60px 20px;
            background-color: #f8f9fa;
        }

        .polysite-our-products-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .polysite-our-products-title {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .polysite-our-products-subtitle {
            font-size: 1rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .polysite-categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .polysite-category-card {
            border-radius: 8px;
            padding: 40px 30px;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s;
        }

        .polysite-category-card:hover {
            transform: translateY(-5px);
        }

        .polysite-category-card.pet-bottles {
            background-color: #b8c7e0;
        }

        .polysite-category-card.pp-bottles {
            background-color: #6b7280;
            color: #fff;
        }

        .polysite-category-card.pc-bottles {
            background-color: #c8e6c9;
        }

        .polysite-category-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .polysite-category-description {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .polysite-category-image-wrapper {
            text-align: center;
            margin-top: auto;
        }

        .polysite-category-image {
            width: 100%;
            max-width: 180px;
            height: 200px;
            object-fit: contain;
        }

        /* View More Button */
        .polysite-view-more-btn {
            background-color: #1a1a1a;
            color: #fff;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .polysite-view-more-btn:hover {
            background-color: #333;
        }

        .polysite-btn-container {
            text-align: left;
        }

        /* PET style */
        @import url('https://fonts.googleapis.com/css2?family=Allura&family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.pet-main-container {
  width: 100%;
  min-height: 100vh;
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
}

/* === PET CARD === */
.pet-card {
  background-color: #fff;
  border-radius: 16px;
  width: 300px;
  height: 50vh;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* soft airy shadow */
}

.pet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); /* subtle hover lift */
}

/* === IMAGE CONTAINER === */
.pet-img-cont {
  width: 100%;
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: #f9fafb;
}

.pet-img-cont img {
  width: 200px;
  height: 150px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1); /* soft image shadow */
}

/* === PRODUCT DETAILS === */
.prod-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.prod-details p:nth-child(1){
  font-weight: 600;
  font-size: 1rem;
}

/* === DOWNLOAD BUTTON === */
/* === DOWNLOAD BUTTON === */
.download-btn-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

#downloadPDF,
#downloadPETPDF,
#downloadPPPDF,
#downloadPCPDF {
  background-color: #000;
  color: #fff;
  padding: 15px 25px;
  width: auto;
  min-width: 250px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#downloadPDF:hover,
#downloadPETPDF:hover,
#downloadPPPDF:hover,
#downloadPCPDF:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


        /* PET style ends */

        /* Responsive Design */
        @media (max-width: 968px) {
            .polysite-sustainability-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .polysite-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .polysite-gallery-header h1 {
                font-size: 2rem;
            }

            .polysite-featured-title,
            .polysite-sustainability-title,
            .polysite-manufacturing-title,
            .polysite-our-products-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 640px) {
            .polysite-products-grid {
                grid-template-columns: 1fr;
            }

            .polysite-gallery-grid {
                grid-template-columns: 1fr;
            }

            .polysite-categories-grid {
                grid-template-columns: 1fr;
            }

            .polysite-gallery-header {
                padding: 40px 20px 30px;
            }

            .polysite-gallery-header h1 {
                font-size: 1.75rem;
            }

            .polysite-featured-section,
            .polysite-manufacturing-section,
            .polysite-our-products-section {
                padding: 40px 20px;
            }

            .polysite-category-card {
                min-height: 350px;
       }
}

/* Fallback for older browsers */
@supports not (aspect-ratio: 16 / 9) {
    .map-wrapper {
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
    }

    .map-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}


@media (max-width: 480px) {
    .map-wrapper {
        aspect-ratio: 3 / 2;
    }
}
/* Contact Page ends */

    
@media (max-width: 768px) {

   .map-wrapper {
        aspect-ratio: 4 / 3;
    }
    .btncontainer2{

      width: 90%;
    }

  .about-container {
    flex-direction: column;
    padding: 0px;
    text-align: center;
  }

  .about-heading h2 {
    font-size: 1.3rem;
    padding-left: 7rem;
  }

  .about-text p {
    font-size: 0.9rem;
    padding: 0;
  }

   .vision-container {
    flex-direction: column;
    text-align: center;
    padding: 5rem 0;
  }

  .vision-text h2 {
    font-size: 1.3rem;
  }

  .vision-text p {
    font-size: 0.9rem;
  }

  .vision-image {
    margin-top: 20px;
    width: 10rem;
  }

  .mission-container {
    flex-direction: column;
    text-align: center;
    padding: 0rem;

  }
  .mission-image img {
    max-width: 150px;
  }

  .mission-text h2{
    font-size: 1.3rem;
  }
  .links{ 
    display: none; 
}
  .hamburger-menu{ 
    display: block !important; 
}
  .nav-btn-container{ 
    display: none; 
}
  .footer-contact-column, .footer-product-column, .footer-support-column{
    padding-left: 10px;
  }
  .footer-img{
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  .ghost{
    display: none;
  }
  .header-advert{
    width: 100%;
  }
  .newsletter-container{
    flex-direction: column;
  }
  .newsletter-input-cont, .newsletter-txt-cont, .newsletter-txt-wrap{
    width: 100%;
  }
  .newsletter-txt-cont{
    text-align: center;
  }
  .newsletter-container{
    gap: 20px;
  }
  .newsletter-input-cont{
    justify-content: center;
  }
}


/* About Section Ends */

/* Responsive */
