/* Hero Carousel Styles */
.hero-carousel-img {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.hero-carousel-img img {
  width: 100%;
  min-height: 300px;
  display: block;
}

.hero-carousel-box {
  position: absolute;
  top: 12%;
  left: 5%;
  background: rgb(0 0 0 / 12%);
  padding: 25px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  width: 35vw;
  min-width: 250px;
  color: white;
}

.hero-carousel-box h2 {
  font-size: 34px;
  font-weight: 400;
  margin: 0;
  line-height: 38px;
}

.hero-carousel-box button {
  background: white;
  color: black;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  margin: 15px 0 5px;
  text-transform: uppercase;
}
/* Custom Pagination (Outside Image) */
.custom-pagination {
  text-align: center;
  margin-top: 15px;
}

.custom-pagination button {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: gray;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-pagination button.active {
  background: black;
}

.feature-card-custom {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  background: white;
  width: 100%;
  max-width: 400px;
}

.feature-card-custom img {
  width: 65px;
  height: 65px;
  opacity: 0.6;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
}

.card-text {
  font-size: 13px;
  color: gray;
  margin: 5px 0 0;
  line-height: 18px;
}

.buy-button {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: bold;
  border: 1.5px solid #85b943;
  background: white;
  border-radius: 25px;
  width: 100%;
  letter-spacing: 2px;
  font-weight: 600;
}

.buy-button:hover {
  background: #85b943;
  color: white;
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 330px;
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
} 

.product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.product-image {
  background-color: #f4f4f4;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 215px;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-image img {
  height: 100%;
  object-fit: cover;
}

.product-name {
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  margin-bottom: 3px;
  line-height: 1.2;
  font-weight: 500;
  padding-bottom: 0.3rem;
}

.buy-button {
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  border: 1.5px solid #85b943;
  background: white;
  border-radius: 25px;
  width: 100%;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.buy-button:hover {
  background: #85b943;
  color: white;
}

.clearfix {
  clear: both;
}

.btn-show-more {
  background-color: #f4f4f4;
  border: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-show-more:hover {
  background-color: #e0e0e0;
}

.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.blog-box .card-title {
  font-size: 18px;
  font-weight: 500;
}

.blog-box .card-text {
  color: #404040;
}

.date {
  font-size: 11px;
  font-weight: 500;
}

.faqs .accordion-item {
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.faqs .accordion-body {
  padding: 1rem 1.25rem;
  font-weight: 500;
}

.faqs .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.faqs .accordion-button {
  padding: 1.5rem 1.25rem;
  font-weight: 500;
}

.faqs .accordion-button::after {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-left: auto;
  content: "";
  background-image: url('data:image/svg + xml,%3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="%23212529"%3e%3cpathfill-rule="evenodd"d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-size: 0.8rem;
  transition: transform 0.2s ease-in-out;
}

.faq-link {
  color: #1a54d7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.faq-link i {
  margin-left: 5px;
}

@media (max-width: 991.98px) {
  .hero-carousel-box h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-carousel-box button {
    padding: 6px 12px;
    font-size: 14px;
  }

  .feature-card-custom {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .feature-card-custom img {
    margin-bottom: 10px;
  }

  .nav-container {
    padding: 15px 0px 15px 0 !important;
  }
}

@media (max-width: 767.98px) {
  .hero-carousel-box {
    position: absolute;
    top: 17%;
    left: 0;
    background: rgb(0 0 0 / 12%);
    padding: 5px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    width: 35vw;
    min-width: 300px;
    color: white;
    right: 0;
    margin: auto;
  }

  .feature-card-custom {
    flex-direction: row;
  }

  .features-cards .col-md-4:has(.feature-card-custom) {
    justify-content: center !important;
  }

  .card img {
    max-width: 300px !important;
    margin: 0 auto;
  }
}


@media (max-width: 600px) {
  .hero-carousel-img img {
    object-fit: cover;
    object-position: left;
  }

  .hero-carousel-box {
    text-align: center;
    width: 80vw !important;
    height: 25vh;
  }

  .hero-carousel-box button {
    font-size: 12px;
  }

  button.s-btn {
    background: #000;
    color: #fff !important;
    border: none;
    width: 30px;
    height: 28px;
  }

  .latest {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    max-height: 50px;
  }

  .search-box button {
    padding: 6px 10px;
  }

  .feature-card-custom {
    flex-direction: column;
  }

  .faqs .accordion-button {
    padding: 10px;
  }

  .faqs .accordion-body {
    font-weight: 400;
    padding: 10px;
  }

  .faqs .accordion-body p,
  .faqs .accordion-body a {
    font-size: 12px !important;
    line-height: 1.4;
  }
}

.products-cards 
{
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  row-gap: 10px;
}

.product-card-hp{
  width: 20%;
  padding: 5px;
}

@media (max-width: 1024px) {
  .product-card-hp{
    width: 25%;
  }
}

@media (max-width: 768px) {
  .product-card-hp{
    width: 33.33%;
  }
}

@media (max-width: 425px) {
  .product-card-hp{
    width: 50%;
  }
}

