* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f2f3f8;
}
/* Header Section / First section  */
.header {
  background: white;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.top-bar {
  display: flex;
  align-items: center;
  padding: 15px 100px;
}

.logo {
  height: 60px;
}

.center {
  display: flex;
  align-items: center;
  gap: 40px;
}
.center-search {
  border: 1px solid #ccc;
  padding: 5px;
  margin-left: 60px;
  min-width: 700px;
  display: flex;
  justify-content: space-between;
  border-radius: 25px;
}
.center input {
  padding: 8px;
  font-size: 16px;
  border: none;
  outline: none;
  padding-left: 20px;
  width: 70%;
}

.center-searchButton {
  background-color: #61c454;
  color: white;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: white;
  gap: 40px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
}

.nav-item {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}

.dropdown {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  transform-origin: top;
  position: absolute;
  background: white;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  transform: scaleY(0);
  width: 200px;
}

.nav-item:hover .dropdown {
  max-height: 500px;
  opacity: 1;
  transform: scaleY(1);
}

.dropdown a {
  display: block;
  padding: 10px;
  white-space: nowrap;
  border-bottom: 1px solid #ccc;
}
.dropdown a:last-child {
  border-bottom: none;
}
.dropdownMobile {
  display: none;
  flex-direction: column;
  transition: all 0.5s ease;
  z-index: 9999999;
  margin-left: 10px;
}

.dropdownMobile a {
  padding: 10px 16px;
  border-top: 1px solid #ddd;
  color: #555;
}

.nav-item.open .dropdownMobile {
  display: flex;
}
.right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart {
  position: relative;
  font-size: 20px;
  animation: bounce 1s infinite alternate;
  margin-left: 240px;
}

.cart .count {
  background: red;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  padding: 2px 6px;
  position: absolute;
  bottom: -8px;
  right: -10px;
}
@media (max-width: 1280px) {
 .center-search {
  min-width: 600px;
}
.top-bar {
  padding: 15px 60px;
}
.cart {
  margin-left: 100px;
}
}
@media (max-width: 1080px) {
 .center-search {
  min-width: 500px;
}
.cart {
  margin-left: 70px;
}
}
.login-btn {
  border: 1px solid #ccc;
  background: none;
  padding: 10px 16px;
  cursor: pointer;
  margin-left: 30px;
  width: 120px;
  font-size: 18px;
  border-radius: 8px;
}

.menu-icon,
.search-toggle {
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.searchbar-full {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: white;
  z-index: 20;
  padding: 20px;
  gap: 40px;
}
.searchbar-full-cotainer{
    display: flex;
    gap: 40px;
}
.searchbar-full input {
  width: 80%;
  padding: 10px;
  font-size: 16px;
  border-radius: 20px;
  border-radius: 1px solid #ccc;
}

.searchbar-full .close-search {
  text-align: right;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 0;
}
@media (max-width: 920px) {
    .top-bar {
  display: flex;
  align-items: center;
  padding: 15px 40px;
}
 .center-search {
  min-width: 360px;
}
.cart {
  margin-left: 20px;
}
}
.sidebar {
  position: fixed;
  left: -100%;
  top: 0;
  height: 100vh;
  width: 300px;
  background: white;
  transition: left 0.3s ease-in-out;
  z-index: 15;
  padding: 20px;
  overflow-y: auto;
  z-index: 99999;
}
.sidebar-close{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar.active {
  left: 0;
}

.sidebar .close-menu {
  text-align: right;
  font-size: 20px;
  cursor: pointer;
}

.sidebar .nav-item {
  margin: 10px 0;
}

.sidebar .dropdown {
  display: none;
  padding-left: 10px;
}

.sidebar .nav-item.open .dropdown {
  display: block;
}

.sidebar .nav-item-toggle {
  float: right;
  cursor: pointer;
  font-size: 24px;
}

.sidebar a,
.sidebar .nav-item > a {
  display: block;
  font-weight: bold;
  color: black;
  text-decoration: none;
  padding: 10px 0;
}

/* @keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
} */

@media (max-width: 768px) {
  .nav-links,
  .center {
    display: none;
  }

  .menu-icon,
  .search-toggle {
    display: block;
  }

  .top-bar {
    justify-content: space-between;
  }
  .nav-item{
    border-bottom: 1px solid #ccc;
  }
  .nav-item:last-child{
    border-bottom: none;
  }
}

/* Banner Section / Section section  */

.keen-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.keen-slider__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.banner-content {
  width: 100%;
  aspect-ratio: 2.4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 9999;
}

.dot {
  height: 18px;
  width: 18px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 9999;
}

.dot.active {
  background-color: #000;
}
@media (max-width: 768px) {
  .banner-content {
    aspect-ratio: 2.2;
  }
  .dot {
    height: 10px;
    width: 10px;
  }
}
/* Third section  */
/* SECTION FLEX ON LARGE SCREENS */
.bs-section {
  padding: 40px 60px;
  background: #f2f3f8;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* HEADER */
.bs-header {
  max-width: 400px;
  flex: 0 0 auto;
  text-align: center;
}
.bs-header-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
.bs-header-para {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.bs-cart-btnAll {
  background: #69c642;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 15px;
}

/* SLIDER WRAPPER */
.bs-carousel-wrapper {
  position: relative;
  flex: 1;
  min-width: 260px;
}

/* KEEN SLIDER STYLES */
.bs-carousel.keen-slider {
  display: flex;
}
.bs-card.keen-slider__slide {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bs-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.bs-info-heading {
  font-size: 16px;
  margin: 8px 0;
  padding: 0px 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bs-weight,
.bs-price {
  font-size: 14px;
  color: #333;
}
.bs-price {
  font-size: 20px;
  font-weight: bold;
  margin: 8px 0;
}
.bs-cart-btn {
  background: #69c642;
  color: white;
  border: none;
  padding: 20px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* ARROWS */
.bs-arrow {
  background: white;
  border: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.bs-left {
  left: -15px;
}
.bs-right {
  right: -15px;
}
.bs-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1024px) {
  .bs-section {
    flex-direction: column;
    align-items: center;
  }
  .bs-header {
    text-align: center;
    margin-bottom: 30px;
  }
  .bs-carousel-wrapper {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .bs-carousel-wrapper {
    width: 100%;
    
  }
  .bs-section {
  padding: 40px 28px;
}
}


/* Info Banner Container */
.info-banner-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  border-bottom: 2px solid #eee;
  padding: 30px 200px;
  gap: 20px;
  background-color: #fff;
}

.info-banner-item {
  display: flex;
  align-items: center;
  max-width: 320px;
  flex: 1 1 250px;
}

.info-banner-icon {
  width: 60px;
  aspect-ratio: 1.2;
  margin-right: 15px;
  color: #4caf50;
}

.info-banner-text .info-banner-title {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.info-banner-subtitle {
  font-size: 12px;
  color: #000;
}

@media (max-width: 768px) {
  .info-banner-container {
    flex-direction: column;
    align-items: center;
    padding: 30px 0px;
  }

  .info-banner-item {
    justify-content: center;
    text-align: center;
    max-width: 320px;
    flex: 1 1 60px;
    gap: 10px;
  }

  .info-banner-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .info-banner-text {
    align-items: center;
  }
}

/* Footer Section / Last Section  */

.am-container {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  padding: 50px 120px 20px 120px;
}
.am-conatiner-child {
  display: flex;
}

.am-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 20px;
  width: 300px;
}

.am-logo {
  width: 120px;
  height: auto;
  margin-right: 10px;
}

.am-title {
  font-size: 24px;
  font-weight: bold;
  color: #2e7d32;
}

.am-subtitle {
  font-size: 14px;
  color: #666;
}

.am-certifications {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.am-cert {
  width: 80px;
  height: auto;
}

.am-sections {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.am-section {
  flex: 1;
  min-width: 200px;
  flex-basis: 25%;
}
.am-contact span.icon {
  width: 24px;
  margin-right: 10px;
  text-align: center;
  font-size: 18px;
  color: #555;
  flex-shrink: 0;
}

.am-section h3 {
  color: #60bb44;
  margin-bottom: 40px;
  text-align: left;
}
.am-sectionilistaddress {
  display: flex;
  gap: 10px;
  font-size: 16px;
  line-height: 24px;
}
.am-sectionilist {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  text-align: left;
}
.am-sectionilist-location {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  text-align: left;
}
.am-section .am-social-anc {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 5px;
}

.am-section .am-social-anc:hover {
  color: #2e7d32;
}

.am-social {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.am-social-anchor {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center !important;
  justify-content: center;
  background-color: #333;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
}

.am-social-anchor i {
  font-size: 18px;
  color: white;
  display: block;
  line-height: 1;
}

.am-contact {
  color: #2e7d32;
}

.am-footer {
  font-size: 14px;
  color: #000;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .am-container {
    padding: 50px 40px 20px 40px;
  }
}
@media (max-width: 768px) {
  .am-sectionilistaddress {
    max-width: 260px;
  }
  .am-sections {
    flex-direction: column;
    align-items: center;
  }

  .am-certifications {
    flex-wrap: wrap;
  }

  .am-cert {
    width: 60px;
  }
  .am-conatiner-child {
    flex-direction: column;
  }
  .am-header {
    width: 100%;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .am-header {
    max-width: 260px;
    align-items: center;
  }
}
