* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.logo img {
  height: 50px;
}

.tagline {
  font-size: 12px;
  color: #888;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 55px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}



.country-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.country-select {
  padding: 4px 8px;
}

.icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icons i {
  position: relative;
  font-size: 20px;
}

.icons .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: green;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  padding: 2px 5px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Nave Bar */

.navbar {
  display: flex;
  align-items: center;
  background: #6dbb32;
  padding: 0 20px 10px 10px !important;
  color: white;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-left: 20px;
}

ul.menu>li {
  position: relative;
}

ul.menu>li>a {
  display: block;
  padding: 15px 15px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

ul.menu>li:hover>a {
  background-color: #0000001a;
  color: #fefefe;
}

/* Submenu styles */
ul.submenu {
  position: absolute;
  top: 100%;
  left: 10;
  display: none;
  padding: 10px 0;
  line-height: 2.2;
  border-radius: 2px;
  list-style: none;
  min-width: 160px;
  z-index: 1000;
}

ul.submenu li a {
  display: block;
  font-weight: 500;
  color: #000000;
  padding: 0px 15px;
  text-decoration: none;
}

ul.submenu li a:hover {
  color: #ffffff;
}

/* Show submenu on hover */
ul.menu>li:hover .submenu {
  display: block;
  background-color:  #0ea31a; /* categories background */
  /*color: #0b0a0a;*/
}

.right-contact {
  display: inline-block;
  align-items: flex-start;
  gap: 10px;
}

.right-contact i {
  font-size: 20px;
  text-decoration: none;
  color: #ffffff;

}
.right-contact span a{
  color: #ffffff;
  text-decoration: none;
  
}

.right-contact small {
  font-size: 10px;
  color: #eee;
}

/* Hero section  */
.slider-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 450px;
}

.slides {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide {
  min-width: 100%;
  transition: opacity 0.5s ease;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-btn {
  position: absolute;
  bottom: 20px;
  left: 30px;
  z-index: 10;
}

.slider-btn .btn {
  background-color: #6dbb32;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s;
}

.slider-btn .btn:hover {
  background-color: #5aa026;
}

.slider-btn img {
  width: 16px;
  margin-left: 10px;
}
.slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.slide.active {
  opacity: 1;
  position: relative;
}


/* breadcrumb styles */
.breadcrumb {
  background: #f5f5f5;
  padding: 10px 20px;
  font-size: 14px;
  color: #555;
  text-align: center;
}

.breadcrumb a {
  color: #6dbb32;
  text-decoration: none;
}

/* breadcrumb styles */
/* products area  */

/* Base styles for the product area */
.product-area {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.product-area h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
}

/* Grid layout for products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product card */
.product-item {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Product image */
.product-item img {
  width: 100%;
  height: auto;
  border: 2px solid #269b06;
  margin-bottom: 15px;
  border-radius: 6px;
}

/* Product name */
.product-item h3 {
  font-size: 20px;
  margin: 10px 0 8px;
  color: #222;
}

/* Product description */
.product-item p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* Button */
.product-item button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #6dbb32;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.product-item button a{
  color: white;
  text-decoration: none;
}

.product-item button:hover {
  background-color: #5aa026;
}

/* Testimonials slider section ======= */

.testimonial-section {
  padding: 40px 20px;
  text-align: center;
}

.sub-heading {
  color: #888;
  font-style: italic;
  margin-bottom: 5px;
}

.main-heading {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.google-rating {
  background: #f5f5f5;
  padding: 15px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.google-rating img {
  height: 20px;
}

.rating-value {
  font-weight: bold;
  font-size: 15px;
}

.stars {
  font-size: 15px;
  color: #fbc02d;
}

.write-review {
  margin-left: auto;
  background: #1669F2;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
}

.testimonial-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}

.testimonial-card {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 20px;
  width: 260px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.user-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar {
  background: #ccc;
  color: #333;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-right: 10px;
}

.name strong {
  font-size: 16px;
}

.name small {
  display: block;
  font-size: 12px;
  color: #666;
}

.verified {
  color: #1a73e8;
  font-size: 16px;
}

.arrow {
  font-size: 28px;
  cursor: pointer;
  color: #6dbb32;
  user-select: none;
}

.left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* footer  */
.cartifivat-img {
  width: 80%;
  height: 60px;
  margin-bottom: 20px;

}

.footer {
  background-color: #1a1a1a;
  padding: 40px 20px;
  color: #fff;
  background-image: url('');
  background-repeat: repeat;
  background-size: contain;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;

  max-width: 1200px;
  margin: auto;
}

.form-container {

  padding: 20px;
  border-radius: 5px;
}

h2 {
  color: #333;
  font-size: 24px;
  font-family: serif;
  font-weight: 700;
  text-align: center;
}

#form {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: auto;
  justify-content: center;
  margin: auto;
}

input {

  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  align-items: center;
  border-radius: 5px;

}

textarea {

  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {

  padding: 10px;
  border: none;
  gap: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  background-color: #6ba90e;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #44a922;
  color: #000;
}

#result {
  margin-top: 20px;
  text-align: center;
  color: green;
}

@media (max-width: 760px) {
  h2 {
    font-size: 24px;
    font-family: serif;
    font-weight: 700;
    text-align: center;
  }

  #form {
    flex-direction: column;
    width: 100%;
  }

  input,
  textarea,
  button {
    width: 100%;
  }
}

@media (max-width: 400px) {
  h2 {
    font-size: 20px;
  }

  input,
  textarea,
  button {
    font-size: 14px;
  }
}

.footer-column {
  flex: 1 1 180px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 2px solid #6dbb32;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #6dbb32;
}

.contact p {
  margin: 8px 0;
  font-size: 14px;
}

.contact a {
  color: #6dbb32;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.contact i {
  margin-right: 8px;
  font-size: 16px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #6dbb32;
}

.copyright {
  padding: 10px;
  align-items: center;
}


/* Responsive */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-direction: row;
    align-items: flex-start;
    padding: 10px 20px !important;
  }

  ul.menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  ul.menu.active {
    display: flex;
    flex-direction: row;
    width: 100%;
  }

  .slider-btn {
    bottom: 15px;
    left: 15px;
  }

  .slider-btn .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .slider-btn .btn img {
    width: 14px;
    height: 14px;
  }

  .testimonial-carousel {
    flex-direction: column;
  }

  .arrow {
    display: none;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
  }
}






/* .navbar {
    display: block;
    align-items: center;
    background: #6dbb32;
    padding: 10px  20px;
    color: white;
    flex-wrap: wrap;
}
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  ul.menu {
    
    display: none;
    flex-direction: column;
    width: 100%;
  }
  ul.menu.active{
    display: flex;
    flex-direction: row;
    width: 100%;
  } */