body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fff9;
  }
  
  .navbar {
    background: #2e7d32;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    flex-wrap: wrap;
  }
  
  .nav-links {
    list-style: none; /* <-- ये dot हटाता है */
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  section {
    padding: 40px;
    text-align: center;
  }
  
  h1, h2, h3 {
    margin: 10px 0;
    color: #2e7d32;
  }
  
  .product-list, .gallery-grid, .team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
  
  .product-card, .gallery-item, .team-member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .product-card img, .gallery-item img, .team-member img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .product-card input {
    width: 60px;
    margin: 10px 0;
    padding: 5px;
  }
  
  button {
    background-color: #388e3c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #2e7d32;
  }
  
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  }
  
  .cart-item button {
    background: #c62828;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
  }
  
  .contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
  }
  
  .contact-form button {
    background-color: #388e3c;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #2e7d32;
  }
  
  footer {
    background-color: #e8f5e9;
    padding: 20px;
    text-align: center;
    color: #555;
    margin-top: 40px;
  }
  
  /* Fix for homepage layout */
  .home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
  }
  
  .home-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
  }
  .site-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* Make sure font is same everywhere */
  body, h1, h2, h3, a, p {
    font-family: 'Segoe UI', sans-serif;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #f0fff0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .site-title {
    font-size: 28px;
    font-weight: bold;
    color: #2e7d32;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #2e7d32;
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body, h1, h2, h3, p, a {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
  }
  .wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
  }
  .shop-now-btn {
    display: inline-block;
    background-color: #4caf50;
    color: white;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
  }
  
  .shop-now-btn:hover {
    background-color: #388e3c;
    transform: scale(1.05);
    cursor: pointer;
  }
  .contact-section a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 500;
  }
  
  .contact-section a:hover {
    text-decoration: underline;
  }
  .contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 16px;
    border: 2px solid #a5d6a7;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #66bb6a;
    background-color: #f1f8e9;
  }
  
  .contact-form button {
    background-color: #4caf50;
    color: white;
    font-size: 18px;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .contact-form button:hover {
    background-color: #388e3c;
    transform: scale(1.05);
  }
  .about-image {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  /* Basic layout fix to push footer down */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .wrapper {
    flex: 1;
    padding: 20px;
  }
  
  /* Footer styling */
  footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: auto;
  }
  /* Full layout height fix */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  /* Container that fills whole screen */
  .page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Content takes remaining space */
  .content-wrap {
    flex: 1;
    padding: 20px;
  }
  
  /* Footer at bottom */
  footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 15px 0;
  }
  footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-size: 16px;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 40px;
  }
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  .page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .content-wrap {
    flex: 1;
    padding: 20px;
    text-align: center;
  }
  
  footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-size: 16px;
    width: 100%;
  }
  /* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9fff9;
    color: #2e7d32;
  }
  
  main {
    flex: 1;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #c8e6c9;
    padding: 10px 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .site-title {
    font-size: 24px;
    font-weight: bold;
    color: #2e7d32;
  }
  
  .nav-links a {
    margin: 0 12px;
    text-decoration: none;
    color: #2e7d32;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  /* Hero Section / Homepage */
  .hero {
    text-align: center;
    padding: 80px 20px;
    background: url('https://www.transparenttextures.com/patterns/green-dust-and-scratches.png');
    background-color: #e8f5e9;
  }
  
  .hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .shop-now-btn {
    padding: 10px 25px;
    background-color: #66bb6a;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
  }
  
  .shop-now-btn:hover {
    background-color: #388e3c;
  }
  
  /* Gallery */
  .gallery {
    text-align: center;
    padding: 40px 20px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Product Section */
  .product-section {
    text-align: center;
    padding: 40px 20px;
  }
  
  .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
  }
  
  .product-card {
    background-color: #ffffff;
    border: 1px solid #c8e6c9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #e0e0e0;
  }
  
  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .product-card h3 {
    margin: 10px 0 5px;
  }
  
  .product-card input[type="number"] {
    width: 60px;
    padding: 5px;
    margin-top: 5px;
  }
  
  .product-card button {
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #43a047;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .product-card button:hover {
    background-color: #2e7d32;
  }
  
  /* Footer */
  footer {
    background-color: #c8e6c9;
    text-align: center;
    padding: 15px 10px;
    font-size: 15px;
    color: #1b5e20;
    margin-top: auto;
  }
  
  /* Responsive Wrapper */
  .wrap {
    width: 90%;
    max-width: 1100px;
    margin: auto;
  }
  body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  main {
    flex: 1;
  }
  
  .cart-section {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
  }
  
  .cart-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cart-items .product-card {
    background: #f0f0f0;
    padding: 15px 20px;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    text-align: center;
  }
  
  .cart-items .product-card h3 {
    margin-bottom: 5px;
  }
  
  .shop-now-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: rgb(0, 136, 0);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
  }
  
  footer {
    background-color: #222;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    margin-top: auto;
  }
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 700px;
  }
  
  .cart-item {
    background: #f9f9f9;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .cart-item h4, .cart-item p {
    margin: 0.2rem 0;
  }
  
  .item-details {
    flex: 1;
  }
  
  .item-actions {
    text-align: right;
  }
  
  .remove-btn {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .final-total {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .cart-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .whatsapp-btn, .pay-now-btn {
    background: #28a745;
    color: white;
    padding: 0.8rem 1.4rem;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .whatsapp-btn:hover, .pay-now-btn:hover {
    background: #218838;
  }
  .cart-section {
    padding: 2rem;
    text-align: center;
  }
  
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: auto;
  }
  
  .cart-item-card {
    background: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cart-item-card h4 {
    margin: 0;
    font-size: 1.2rem;
  }
  
  .cart-item-info {
    flex-grow: 1;
    text-align: left;
    padding-left: 1rem;
  }
  
  .cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .remove-btn {
    background-color: crimson;
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .remove-btn:hover {
    background-color: darkred;
  }
  
  .cart-total {
    margin-top: 2rem;
  }
  
  .cart-buttons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .whatsapp-btn,
  .pay-now-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
  }

  
  .cart-items-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: auto;
    padding: 20px;
  }
  
  .cart-item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .cart-item-card img {
    height: 80px;
    width: 80px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .cart-item-info {
    flex: 1;
    margin-left: 16px;
  }
  
  .cart-item-info h4 {
    margin: 0 0 5px;
  }
  
  .cart-item-info p {
    margin: 0;
    color: #000000;
  }
  
  .cart-item-actions {
    text-align: right;
  }
  
  .cart-item-actions input {
    width: 50px;
    padding: 4px;
    margin-right: 10px;
  }
  
  .cart-item-actions button {
    background: #fe0000;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .final-total {
    text-align: center;
    font-size: 22px;
    margin-top: 20px;
    color: #000000;
  }
  
  .cart-actions {
    text-align: center;
    margin-top: 20px;
  }
  
  
  
  
 .product-card h4 {
  color:#000000;
  font-weight: 700;
 }
 .product-card p {
  color:#555
 }
 .product-card h5 {
  color:#ff0000;
  font-weight: 700;
 }
/* Button styles */
.pay-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background: rgb(0, 119, 255);
  color: white;
  border-radius: 5px;
  margin: 10px;
  width: 250px; /* Set both buttons to same width */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover effects */
.payment-btn:hover, .whatsapp-btn:hover {
  background-color: #45a049;
}
.whatsapp-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #4CAF50;
  color: white;
  border-radius: 5px;
  margin: 10px;
  width: 250px; /* Set both buttons to same width */
  cursor: pointer;
  transition: background-color 0.3s ease;
}
/* Popup Style */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1000;  /* Ensure popup is on top */
}

.popup .popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup h2 {
  font-size: 2rem;
  color: #333;
}

.popup p {
  font-size: 1.2rem;
  color: #666;
}

.popup button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
}

.popup button:hover {
  background-color: #45a049;
}
.contact-hero, .contact-info, .contact-form-section {
  padding: 20px;
  text-align: center;
}

.contact-hero p {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  color: #333;
}

.contact-form-section form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.contact-form-section input,
.contact-form-section textarea {
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.submit-btn {
  background-color: #4CAF50;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.submit-btn:hover {
  background-color: #45a049;
}
.contact-hero {
  background-image: url('https://images.unsplash.com/photo-1600375551740-6b8c4d8d34b9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  font-size: 18px;
  color: white;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

.contact-hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 20px;
  margin: 10px 0;
}

.contact-info, .contact-form-section {
  padding: 40px 20px;
  text-align: center;
}

.contact-info p, .contact-info a {
  font-size: 18px;
  color: #333;
  margin: 5px 0;
}

.contact-form-section form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.contact-form-section input,
.contact-form-section textarea {
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.submit-btn {
  background-color: #4CAF50;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #45a049;
}

/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.contact-info {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #4CAF50;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-item img {
  width: 30px;
  margin-right: 15px;
}

.contact-item span, .contact-item a {
  font-size: 20px;
  color: #555;
  text-decoration: none;
}

.contact-item a:hover {
  color: #4CAF50;
}
.contact-section {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.contact-item img {
  width: 30px;
  margin-right: 15px;
}

.contact-item span, .contact-item a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
}

.contact-item a:hover {
  color: #4CAF50;
}

form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

form label {
  margin-bottom: 5px;
  font-weight: bold;
}

form input, form textarea {
  width: 80%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #45a049;
}
.contact-section {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

.contact-info {
  margin-bottom: 20px; /* Reduced the space between sections */
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0; /* Reduced the space between each contact item */
}

.contact-item img {
  width: 25px; /* Reduced the icon size */
  margin-right: 10px; /* Reduced the space between the icon and text */
}

.contact-item span, .contact-item a {
  font-size: 16px; /* Reduced font size */
  color: #333;
  text-decoration: none;
}

.contact-item a:hover {
  color: #4CAF50;
}

form {
  margin-top: 10px; /* Reduced space from the contact-info section */
  display: flex;
  flex-direction: column;
  align-items: center;
}

form label {
  margin-bottom: 5px;
  font-weight: bold;
}

form input, form textarea {
  width: 80%;
  padding: 8px; /* Reduced padding for smaller input size */
  margin-bottom: 10px; /* Reduced margin between inputs */
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  padding: 8px 15px; /* Adjusted button size */
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #45a049;
}
.contact-hero p{
  font-size: 16px;
}
.contact-hero h2{
  font-size: 30px;
  color: #136f16;
}
.contact-hero h3{
  font-size: 18px;
}
.contact-section h2{
  color: #136f16;
  font-size: 30px;
}
.platform-links {
  text-align: center;
  margin: 50px auto;
}

.platform-links h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.platform-icons img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.platform-icons img:hover {
  transform: scale(1.1);
}
.platform-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.checkout-btn {
  background-color: #28a745; /* Green color for the button */
  color: white; /* Text color */
  padding: 15px 30px; /* Padding to make the button bigger */
  font-size: 18px; /* Larger font size */
  border: none; /* Remove border */
  border-radius: 8px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Animation on hover */
  width: 100%; /* Make the button full width */
  max-width: 300px; /* Limit the button's maximum width */
  margin-top: 20px; /* Space from the content above */
  display: block; /* Ensure it's a block element for proper centering */
  text-align: center; /* Center text inside the button */
}

.checkout-btn:hover {
  background-color: #218838; /* Darker green on hover */
  transform: scale(1.05); /* Slightly enlarge the button on hover */
}
.checkout-container {
  text-align: center;
  padding: 40px 20px;
}

.checkout-container h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.checkout-container p {
  font-size: 18px;
  color: #444;
}
.checkout-form {
  color:#000000;
  font-weight: 50px;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  margin-right: 10px;
}

.site-title {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
}
.nav-links a {
  display: flex;
  align-items: center;
  margin-right: 20px;
  text-decoration: none;
  color: #039719;
}

.nav-icon {
  width: 30px;
  height: 30px;
  margin-right: 6px;
}
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}
.navbar {
  background-color: #45a049;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.nav-links a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  background: url('images/farm-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 48px;
}
.hero button {
  padding: 10px 20px;
  font-size: 18px;
  margin-top: 20px;
  background-color: #ff9800;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
.features .product-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.product-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}
.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

.product-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
}
.product, .why-choose, .gallery, .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.product-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}
.gallery img {
  width: 100%;
  border-radius: 6px;
}
.cta-footer {
  background-color: #388e3c;
  color: white;
  text-align: center;
  padding: 30px 20px;
}
.cta-footer h2 {
  color:white;
}
.cta-footer button {
  background-color: #ff5722;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
      transition: background-color 0.3s;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  text-align: center;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.features .product-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}
.navbar {
  background-color: #2e7d32;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.nav-links a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s;
}
.nav-links a:hover {
  transform: scale(1.1);
}
.hero {
  background: url('images/farm-bg.jpg') center/cover no-repeat;
  color: rgb(24, 120, 7);
  padding: 80px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 48px;
}
.hero button {
  padding: 10px 20px;
  font-size: 18px;
  margin-top: 20px;
  background-color: #ff9800;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
.hero {
  text-align: center;
  padding: 80px 20px;
  background: url('https://www.transparenttextures.com/patterns/green-dust-and-scratches.png');
  background-color: #e8f5e9;
}
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.product-list, .gallery-grid, .team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.product, .gallery-item, .team-member {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: justify;
}

.product img, .gallery-item img, .team-member img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.product input {
  width: 60px;
  margin: 10px 0;
  padding: 5px;
}

button {
  background-color: #388e3c;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #2e7d32;
}
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.product-card h3, .product-card p, .product-card h4 {
  margin: 5px 0;
}

.product-card input {
  width: 60px;
  padding: 5px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  text-align: center;
}

.product-card button {
  background-color: #2e7d32;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-card button:hover {
  background-color: #1b5e20;
}
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}
.product-head{
  text-align: center;
  align-self: auto;

}
.body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f9fdf9;
      color: #333;
      text-align: center;
    }
.header {
      background-color: #4caf50;
      color: white;
      padding: 20px;
    }
.navbar {
  position: fixed;
  width: 100%;
      background-color: #4caf50;
      color: white;
      padding: 10px;
      display: flex;
}
.nav-links  {
    padding: 5px;
      align-items: center;
      display: flex;
      gap: 15px;
      justify-content: space-between;
      margin-left: auto;
}
 .nav-links a:hover {
  transform: scale(1.1);
}
.nav-links img {
  height: 25px; 
  width: 25px;/* या जो भी size आपको चाहिए */
}

.nav-icons a {
  margin-left: 30px;
  color: #333;
  font-size: 30px;
  text-decoration: none;
}

