* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
/*  font-family: 'Poppins', sans-serif;*/
font-family: 'Inter', sans-serif; /* Using Inter font for better readability */
}

body {
  background-color: #C2EFD4; /* Soft light green background */

  padding-top: 100px; /* <-- prevents content from hiding behind header */
}



/*header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #ffffff;
}*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #C2EFD4;
  position: fixed; /* <-- this makes it stay at top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* <-- keeps it above all content */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* optional: small shadow for better look */
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #2e7d32; /* Dark green */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #2e7d32;
  font-weight: 600;
}

.login-btn {
/*  background: #2e7d32;*/
  color: #2e7d32;
  padding: 10px 20px;
  border-color: #2e7d32;
/*  border-radius: 8px;*/
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-btn:hover {
  background: #1b5e20;
  color: #fff;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10%;
  background-color: #C2EFD4;
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  font-size: 42px;
  color: #1b5e20;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-btn {
  background: #2e7d32;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: #1b5e20;
}

.hero-image img {
  width: 400px;
  height: 500px;
  border-radius: 20px;
  background-color: #6BC785;
}

.best-selling {
  padding: 60px 10%;
  text-align: center;
  background-color: #ffffff;
}

.best-selling h2 {
  font-size: 32px;
  color: #1b5e20;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}

.products {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.product-card {
  width: 250px;
  padding: 15px;
  border: none;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.product-info {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #555;
  gap: 10px;
}

.divider {
  color: #ccc;
}

.see-more-btn {
  margin-top: 20px;
  padding: 10px 25px;
  background: transparent;
  border: 2px solid #2e7d32;
  color: #2e7d32;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.see-more-btn:hover {
  background: #2e7d32;
  color: #fff;
}


.about {
  background: #ffffff; /* White background for the whole page */
  padding: 50px 0;
}

.about-container {
  background: #c7efd2; /* Light green background inside */
  margin: 0 auto;
  max-width: 1000px;
  border-radius: 5px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  width: 300px;
  border-radius: 10px;
  flex-shrink: 0;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #1b4d3e;
}

.about-text p {
  margin-bottom: 30px;
  color: #333;
  line-height: 1.6;
}

.about-button {
  background: #1b4d3e;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.about-button:hover {
  background: #145239;
}


.feedback {
  padding: 50px 10%;
  text-align: center;
}

.feedback-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.feedback-card {
  padding: 20px;
  border: 1px solid #ccc;
  width: 250px;
  border-radius: 8px;
}

footer {
  background: #1b4332;
  color: white;
  padding: 50px 10% 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 180px;
}

.footer-col h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.newsletter-form {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  padding: 5px 10px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
}

.newsletter-form button {
  padding: 5px 12px;
  background: white;
  color: #1b4332;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 40px;
}

.footer-bottom hr {
  border: none;
  height: 1px;
  background: #ddd;
  margin-bottom: 15px;
  width: 80%;
}

.bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 12px;
  margin-top: -2%;
}

.bottom-links a {
  color: white;
  text-decoration: none;
}

.bottom-links a:hover {
  text-decoration: underline;
}



/* Same styles as before... add these extra styles */

.see-more-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #006400;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Feedback Section */
.feedback-corner {
  text-align: center;
  padding: 50px 20px;
}

.feedback-slider {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.feedback-track {
  display: flex;
  transition: transform 0.5s ease;
}

.feedback-card {
  flex: 0 0 33.3333%;
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid #ccc;
  margin: 10px;
  background: #fff;
  min-height: 250px;
  max-width: 345px;
  text-align: left;
}

.feedback-card.active {
  background-color: #d0f5d8;
}

.quote {
  font-size: 24px;
  color: green;
}

.feedback-buttons {
  margin-top: 20px;
}

.feedback-buttons button {
  margin: 0 5px;
  padding: 8px 12px;
  border: none;
  background-color: #d0f5d8;
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
}
.product-card-dark {
  background-color: #194E3B; /* deep green */
  border-radius: 12px;
  overflow: hidden;
  width: 240px;
  text-align: center;
  margin: 10px;
  padding-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.product-card-dark img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 2px solid #eee;
}

.product-card-dark .product-details {
  padding-top: 10px;
}

.product-name {
  font-size: 18px;
  font-weight: bold;
  color: rgb(0, 0, 0);
  margin-bottom: 4px;
}

.product-price {
  color: #c8facc;
  font-weight: bold;
  font-size: 16px;
}

.product-rating {
  margin-left: 6px;
  color: gold;
  font-weight: normal;
}

.analytics-card canvas {
  margin-top: 15px;
}

.analytics-card select#chartTypeToggle {
  font-size: 14px;
  padding: 4px 8px;
}

.analytics-card {
  background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 18px rgba(40, 167, 69, 0.10);
  margin-bottom: 28px;
  border-left: 6px solid #2e7d32;
  transition: box-shadow 0.2s;
}
.analytics-card:hover {
  box-shadow: 0 8px 32px rgba(40, 167, 69, 0.18);
}
.analytics-card h5 {
  font-size: 1.25rem;
  color: #1b5e20;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.analytics-card p {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.analytics-card .text-muted {
  font-size: 0.95rem;
}