body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  margin: 0;
}

.navbar {
  background: #222;
  color: white;
  padding: 1rem;
  position: right;
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  width: 40px;
  margin-right: 10px;
}

.nav-brand {
  font-size: 1.2rem;
  font-weight: bold;
}

.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  background: #222;
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  padding: 2rem 1rem;
  transition: left 0.3s ease;
  z-index: 1000;

}

.nav-links.active {
  display:flex;
  left: 0;
}

.nav-links li {
  margin: 1rem 0;
list-style-type:none;
}

.nav-links a,
.dropdown-btn {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
padding-right:10px;
}

.dropdown-menu {
  display: none;
  margin-left: 1rem;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.hero {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

.hero .logo {
  width: 120px;
  margin-bottom: 1rem;
}

.featured {
  padding: 2rem 1rem;
  background: #fff;
}

.featured h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: #fafafa;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
}

.footer-icons {
  margin-top: 0.5rem;
}

.footer-icons a {
  margin: 0 0.5rem;
  color: white;
  font-size: 1.2rem;
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    height: auto;
    padding: 0;
    width: auto;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    background: #333;
    padding: 0.5rem 0;
  }

  .dropdown-menu li {
    padding: 0.5rem 1rem;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}


.product-page {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.product {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2rem;
}

.product img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

.product-info {
  flex: 1;
  min-width: 250px;
}

.product-info h2 {
  margin: 0 0 0.5rem;
}

.product-info p {
  font-size: 1rem;
  color: #444;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #555;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .product {
    flex-direction: column;
    text-align: center;
  }
}

.product-intro {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.product-intro h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.product-intro p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}


        .input-field { margin-bottom: 15px; }
        label { font-weight: bold; display: block; margin-bottom: 5px; }
        input, select { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 5px; }
        .hidden { display: none; }



        .buttonSubmit { 
		width: 100%;
		 background: green;
		 color: white;
		 padding: 10px;
		 border: none;
		 border-radius: 5px;
		 cursor: pointer;
		 font-size: 16px;
		 }
        .buttonSubmit:hover { background: darkgreen; }



form label {
    display: block;
    margin: 10px 0;
    cursor: pointer;
}

form label img {
    display: block;
    border: 2px solid transparent;
    transition: 0.3s;
}

form label input[type="radio"] {
    display: none;
}

form label input[type="radio"]:checked + img {
    border: 2px solid #007BFF;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}


.planter-container {
display: flex;
    align-items: center;
    gap: 10px;
}

.planter-container:hover {
    border-color: #007bff; /* Highlight effect */
}


.main-image {
    width: 200px;
    height: auto;
    border: 2px solid #ddd;
    margin-bottom: 10px;
}

.thumbnails {
    display: flex;
    flex-direction: column;
    justify-content: center;
gap: 8px;
}

.thumbnails img {
    width: 50px;
    height: auto;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumbnails img:hover {
    border: 2px solid #007BFF;
}


.contact-page {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

.contact-form-section, .contact-info {
  margin-bottom: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-info h3 {
  margin-top: 1.5rem;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
}

.contact-info ul li {
  margin-bottom: 0.5rem;
}

.mission-statement {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-left: 0px solid #6a4e33;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.mission-statement h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.mission-statement p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  text-align: center;
}

.mission-statement strong {
  color: #222;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}



.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.product-item {
  width: 250px;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 6px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.product-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-item h3 {
  margin-top: 0.75rem;
  font-size: 1.2rem;
}

.product-item p {
  color: #444;
  margin: 0.5rem 0;
}

.custom-sign-feature {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fffaf3;
  border-left: 0px solid #6a4e33;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #3a3a3a;
  text-align: center;
}

.custom-sign-feature h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.custom-sign-feature a.btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #6a4e33;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.custom-sign-feature a.btn:hover {
  background-color: #4a3422;
}

.product-gallery-multi {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.product-gallery-multi img {
  width: 200px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-gallery-multi img:hover {
  transform: scale(1.05);
}

.product-item {
  margin-bottom: 3rem;
  text-align: center;
}



.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.hub-item {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.hub-item img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}


.service-discount {
  background: #f3f3f3;
  padding: 2rem;
  border-top: 3px solid #ccc;
  text-align: center;
}

.discount-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.hero-list li {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.small-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}