@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap");

:root {
  --primary-color: rgba(122, 199, 87, 1);
  --secondary-color: rgba(255, 165, 0, 1);
  --background-color: rgba(244, 248, 236, 1);
  --text-color: rgba(0, 0, 0, 1);
  --white-color: rgba(255, 255, 255, 1);
  --footer-bg-color: rgba(38, 70, 71, 1);
}

body {
  font-family: "Playfair Display", serif;
  background-color: var(--white-color);
}
a {
  text-decoration: none;
}
.navbar {
  position: sticky;
  top: 0;
  background-color: var(--background-color);
  font-family: "Roboto", sans-serif !important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 1000;
}
.navbar-nav .nav-link {
  color: #000;
  margin: 0 10px;
}
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  font-weight: 500;
}
.contact-btn {
  border: 1px solid var(--text-color);
  border-radius: 25px;
  padding: 6px 18px;
  transition: 0.3s;
}
.contact-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.offcanvas-end {
  background-color: var(--background-color);
}

.header-section {
  background: url("../images/home/home-bg.jpg");
}
.header-container {
  max-width: 900px;
}
.home-heading {
  font-size: 70px;
  font-weight: 700;
  color: var(--text-color);
}
.home-sub-heading {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-color);
}
@media (max-width: 1200px) {
  .home-heading {
    font-size: 60px;
  }

  .home-sub-heading {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .home-heading {
    font-size: 50px;
  }

  .home-sub-heading {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .home-heading {
    font-size: 40px;
  }

  .home-sub-heading {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .home-heading {
    font-size: 30px;
  }

  .home-sub-heading {
    font-size: 16px;
  }
}
.get-started-btn {
  background-color: var(--secondary-color);
  color: var(--text-color);
  border-radius: 15px;
  font-weight: 500;
}
.get-started-btn:hover {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.section-heading {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 36px;
}
.section-sub-heading {
  color: var(--text-color);
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px;
}
.section-description {
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.6;
}
.about-us-section {
  background-color: rgba(244, 248, 236, 1);
}

.product-carousel .product {
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-carousel .owl-item:nth-child(odd) .product {
  background-color: rgba(148, 31, 96, 0.25);
}

.product-carousel .owl-item:nth-child(even) .product {
  background-color: rgba(194, 216, 230, 1);
}

.product-carousel .product:hover {
  transform: translateY(-5px);
}

.product-carousel .product-title {
  color: var(--text-color);
  font-weight: bold;
  font-size: 15px;
  margin-top: 10px;
}

.product-carousel .product-description {
  color: var(--text-color);
  font-size: 13px;
  margin: 10px 0;
}

.product-carousel .know-more-button {
  color: var(--text-color);
  font-weight: bold;
  font-size: 14px;
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 10px;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: start;
}

.product-carousel .know-more-button:hover {
  color: var(--text-color);
  text-decoration: underline;
}

.product-carousel .owl-nav button {
  position: absolute;
  top: 40%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff !important;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  border: none;
  font-size: 18px;
  transition: 0.3s;
}

.product-carousel .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.7);
}

.product-carousel .owl-nav .owl-prev {
  left: -45px;
}

.product-carousel .owl-nav .owl-next {
  right: -45px;
}

.product-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.product-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: #999;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.product-carousel .owl-dot.active span {
  background: #941f60;
}

.product-owl-nav {
  position: relative;
}

.product-owl-nav .owl-prev,
.product-owl-nav .owl-next {
  position: absolute;
  top: -200px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;
}

.product-owl-nav .owl-prev {
  right: 40px;
}

.product-owl-nav .owl-next {
  right: -5px;
}

.product-owl-nav button:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .product-owl-nav .owl-prev,
  .product-owl-nav .owl-next {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 576px) {
  .product-owl-nav .owl-prev,
  .product-owl-nav .owl-next {
    top: 5px;
  }
}

.product-section {
  position: relative;
}

.product {
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.row .col-md-3:nth-child(odd) .product {
  background-color: rgba(148, 31, 96, 0.25);
}

.row .col-md-3:nth-child(even) .product {
  background-color: rgba(194, 216, 230, 1);
}

.product:hover {
  transform: translateY(-5px);
}

.product-title {
  color: var(--text-color);
  font-weight: bold;
  font-size: 15px;
  margin-top: 10px;
}

.product-description {
  color: var(--text-color);
  font-size: 13px;
  margin: 10px 0;
}

.know-more-button {
  color: var(--text-color);
  font-weight: bold;
  font-size: 14px;
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 10px;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: start;
}

.know-more-button:hover {
  color: var(--text-color);
  text-decoration: underline;
}

@media (max-width: 576px) {
  .product {
    padding: 15px;
  }

  .product-title {
    font-size: 14px;
  }

  .product-description {
    font-size: 12px;
  }
}
.product-card-title{
  text-align: left;
}
.product-card-text{
  font-size: 13px;
}
.vet-articles-section {
  background-color: rgba(244, 248, 236, 1);
}
.vet-articles {
  padding: 10px;
}
.va-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.va-item.va-show {
  opacity: 1;
  transform: translateY(0);
}
.vet-article-sidebar {
  position: static; /* remove sticky/fixed */
  height: auto;
  overflow: visible;
}
.vet-article-detail-section .row {
  display: flex;
  align-items: flex-start;
}

.vet-article-sidebar, 
.vet-article-content {
  height: 80vh;
  overflow-y: auto;
}
.vet-article-detail-section .row {
  display: flex;
  align-items: flex-start;
}

/* Set scrollable height */
.vet-article-sidebar, 
.vet-article-content {
  height: 80vh;
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

/* Hide scrollbar for Chrome, Safari, Opera */
.vet-article-sidebar::-webkit-scrollbar,
.vet-article-content::-webkit-scrollbar {
  display: none;
}


.footer-section {
  background-color: var(--footer-bg-color);
  color: var(--white-color);
}
.footer-subscribe {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: var(--white-color);
  padding: 10px;
}

.footer-subscribe .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
}
.subscribe-btn button {
  background-color: rgba(150, 191, 173, 1);
  color: var(--text-color);
  border-radius: 25px;
  padding: 6px 18px;
  transition: 0.3s;
  border: none;
  font-weight: bold;
}
.subscribe-btn button:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.footer-links a {
  color: var(--white-color);
}
.follow-us a i {
  color: var(--white-color);
}
.copywrite-section {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.form-send-button {
  background-color: var(--primary-color);
}

.form-send-button:hover {
  background-color: var(--primary-color);
}
.contact-form-card {
  font-family: "Roboto", sans-serif !important;
  background-color: rgba(122, 199, 87, 0.51);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
