
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
  transition: 0.3s;
  animation: fadeInUp 1.5s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }
.card h3 { color: #388e3c; margin-bottom: 10px; }

/* Deal Section */
.deal {
  background: url("image/brocli.jpg") center/cover no-repeat;
  padding: 50px 20px;
  text-align: center;
}
.deal ul { list-style: none; margin: 20px 0; }
.deal li { margin: 8px 0; font-size: 1.1em; color: #444; animation: fadeInUp 2s ease; }

/* Products Section */
.products {
  padding: 50px 20px;
  text-align: center;
  background: #f8fafc url("image/wal2.jpg") center/cover no-repeat;
}
.products h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #0f172a;
}
.product-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;  /* सारे cards center होंगे */
}
.product-card {
  display: block;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  text-decoration: none;
  color: #0f172a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 220px;
  text-align: center;
}
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.product-card h3 {
  font-size: 20px;
  margin: 14px 0 6px;
  color: #2d6a4f;
}
.product-card p {
  font-size: 14px;
  color: #475569;
  padding: 0 12px 16px;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }

/* Blog + Videos */
.blog-videos {
  background: url("image/blog-bg.jpg") center/cover no-repeat;
  padding: 60px 20px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.video-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
  transition: 0.3s;
  animation: fadeInUp 1.8s ease;
}
.video-card:hover { transform: translateY(-8px); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
.video-card h3 { color: #388e3c; margin: 10px 0; }
.video-card p { color: #555; font-size: 14px; }

/* Deal with Countries */
.deal-countries {
  text-align: center;
  padding: 60px 20px;
  background: #f9fdf7 url("image/bg-pattern.jpg") no-repeat center center/cover;
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.country-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}
.country-card:hover { transform: translateY(-8px); }
.country-card img { width: 70px; border-radius: 6px; margin-bottom: 15px; }
.country-card h3 { color: #2e7d32; margin: 10px 0; }
.country-card p { font-size: 0.9rem; color: #555; margin-bottom: 15px; }
.country-card a {
  display: inline-block;
  padding: 8px 15px;
  background: #2e7d32;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.country-card a:hover { background: #1b5e20; }

/* Footer */
footer {
  /* background: #2d6a4f url("image/footer-bg.jpg") center/cover no-repeat; */
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
  animation: fadeInUp 2s ease;
}

/* Animations */
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
@keyframes fadeInDown { from{opacity:0; transform:translateY(-30px);} to{opacity:1; transform:translateY(0);} }
@keyframes fadeInUp { from{opacity:0; transform:translateY(30px);} to{opacity:1; transform:translateY(0);} }
@keyframes slideInDown { from{transform:translateY(-50px);} to{transform:translateY(0);} }
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Body */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f4f8f4;
  color: #333;
  line-height: 1.6;
}

/* ---------- HEADER ---------- */
header {
  background: #2e7d32;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

header h1 {
  font-size: 1.5rem;
}

/* ---------- NAVIGATION ---------- */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #c8e6c9;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: url("image/farming\ img\ 4.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: #81c784;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #66bb6a;
}

/* ---------- SECTION STYLES ---------- */
section {
  padding: 50px 20px;
  text-align: center;
}

h2 {
  color: #1b5e20;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* ---------- SERVICES ---------- */
.service-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background: white;
  padding: 20px;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* ---------- COUNTRIES ---------- */
.country-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.country-card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.country-card img {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* ---------- PRODUCTS ---------- */
.product-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.product-card {
  background: white;
  border-radius: 12px;
  width: 270px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* ---------- CONTACT ---------- */
.contact-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

form {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

form button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #1b5e20;
}

.contact-info {
  text-align: left;
  max-width: 250px;
}

/* ---------- FOOTER ---------- */
footer {
  background: #1b5e20;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .hero {
    height: 60vh;
  }

  h2 {
    font-size: 1.6rem;
  }

  .card, .product-card, .country-card {
    width: 90%;
  }

  form, .contact-info {
    width: 90%;
  }
}


/* Header */
header {
  background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)),
              url("image/header-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  font-size: 22px;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
header nav a:hover {
  color: #ffd166;
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("image/farming\ img2.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  animation: fadeIn 2s ease;
}
.hero h2 { font-size: 2.8em; animation: slideInDown 1.5s ease; }
.hero p { margin: 10px 0; font-size: 1.2em; animation: fadeInUp 2s ease; }
.hero .btn {
  display: inline-block;
  background: #fff;
  color: #2e7d32;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.hero .btn:hover { background: #c8e6c9; transform: scale(1.1); }

/* About Section */
.about {
  /* background: url("image/farming img2.jpg") center/cover no-repeat; */
  padding: 60px 20px;
  text-align: center;
}
.about p {
  max-width: 800px;
  margin: auto;
  color: #0e0d0d;
  font-size: 1.1em;
  line-height: 1.6;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5fff4;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Header */
header {
  background: linear-gradient(135deg, #3aaf3c, #8bd86b);
  color: white;
  padding: 10px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Section */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

header h2 {
  font-size: 1.6em;
  font-weight: 600;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  transition: 0.3s;
  font-weight: 500;
}

nav ul li a:hover,
nav ul li a.active {
  background: rgba(255, 255, 255, 0.25);
}

/* Content Section */
.content {
  max-width: 900px;
  margin: 30px auto;
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.content h1 {
  color: #2c8b2c;
  font-size: 2em;
  margin-bottom: 20px;
}

.content ul {
  list-style-type: none;
  padding: 0;
}

.content ul li {
  background: #e8f8e8;
  margin: 10px 0;
  padding: 15px;
  border-radius: 10px;
  font-size: 1.1em;
  transition: transform 0.3s, box-shadow 0.3s;
}

.content ul li:hover {
  transform: scale(1.03);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background: #2c8b2c;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h2 {
    font-size: 1.4em;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .content {
    margin: 20px 10px;
    padding: 20px;
  }

  .content h1 {
    font-size: 1.6em;
  }

  .content ul li {
    font-size: 1em;
  }

  .logo {
    width: 45px;
    height: 45px;
  }
}


/* Deal Section */
.deal {
  background: url("image/brocli.jpg") center/cover no-repeat;
  padding: 50px 20px;
  text-align: center;
}
.deal ul { list-style: none; margin: 20px 0; }
.deal li { margin: 8px 0; font-size: 1.1em; color: #444; animation: fadeInUp 2s ease; }

/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f4f8f4;
  color: #333;
  line-height: 1.6;
}

/* ---------- HEADER ---------- */
header {
  background: #2e7d32;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

header h1 {
  font-size: 1.5rem;
}

/* ---------- NAVIGATION ---------- */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover, 
nav a.active {
  color: #c8e6c9;
}

/* ---------- PRODUCTS SECTION ---------- */
.products {
  padding: 40px 20px;
  text-align: center;
}

.products h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1b5e20;
}

.product-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.product-card {
  background: white;
  border-radius: 12px;
  width: 280px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
}

.product-card h3 {
  color: #2e7d32;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.9rem;
  color: #555;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ---------- FOOTER ---------- */
footer {
  background: #1b5e20;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .product-card {
    width: 90%;
  }

  .products h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.2rem;
  }

  .product-card img {
    height: 150px;
  }

  .product-card {
    padding: 10px;
  }
}

/* Blog + Videos */
.blog-videos {
  background: url("image/blog-bg.jpg") center/cover no-repeat;
  padding: 60px 20px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.video-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
  transition: 0.3s;
  animation: fadeInUp 1.8s ease;
}
.video-card:hover { transform: translateY(-8px); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
.video-card h3 { color: #388e3c; margin: 10px 0; }
.video-card p { color: #555; font-size: 14px; }

/* Contact Section */
.contact {
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2d6a4f;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 30px auto 0 auto;
  align-items: flex-start;
}

form {
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

form button {
  background: #2d6a4f;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #1b4332;
}

.contact-info {
  text-align: left;
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
}

.contact-info h3 {
  margin-top: 15px;
  color: #40916c;
}

/* Footer */
footer {
  background: #2d6a4f url("image/footer-bg.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
  animation: fadeInUp 2s ease;
}

/* Animations */
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
@keyframes fadeInDown { from{opacity:0; transform:translateY(-30px);} to{opacity:1; transform:translateY(0);} }
@keyframes fadeInUp { from{opacity:0; transform:translateY(30px);} to{opacity:1; transform:translateY(0);} }
@keyframes slideInDown { from{transform:translateY(-50px);} to{transform:translateY(0);} }


/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9fdf7;
  color: #333;
}

/* Header */
header {
  background: #2e7d32;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.6rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  background: #1b5e20;
}

/* Countries Section */
.countries {
  text-align: center;
  padding: 50px 20px;
  background: url("image/bg-pattern.jpg") no-repeat center center/cover;
}

.countries h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #2e7d32;
}

.countries p {
  margin-bottom: 40px;
  color: #555;
  font-size: 1rem;
}

/* Country Grid */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Country Card */
.country-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.country-card img {
  width: 80px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.country-card:hover img {
  transform: scale(1.1);
}

.country-card h3 {
  color: #2e7d32;
  margin: 10px 0;
  font-size: 1.2rem;
}

.country-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Button */
.country-card .btn {
  display: inline-block;
  padding: 8px 15px;
  background: #2e7d32;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.country-card .btn:hover {
  background: #1b5e20;
}

/* Footer */
footer {
  background: #2e7d32;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  margin-top: 30px;
}
/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8f5e9;
  padding: 10px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

header h1 {
  font-size: 1.8rem;
  color: #2e7d32;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #1b5e20;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #388e3c;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f5fff5;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background: linear-gradient(90deg, #1d8a36, #2ecc71);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  height: 45px;
  width: auto;
  margin-right: 10px;
  border-radius: 50%;
}

header h1 {
  font-size: 1.4rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #dfffe1;
  text-decoration: underline;
}

/* Products Section */
.products {
  flex: 1;
  padding: 40px 20px;
  text-align: center;
}

.products h2 {
  color: #1d8a36;
  font-size: 2rem;
  margin-bottom: 25px;
}

.product-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}

.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 15px;
  width: 100%;
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 10px;
}

.product-card h3 {
  color: #1d8a36;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.product-card p {
  color: #555;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: #1d8a36;
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 0.9rem;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  header h1 {
    font-size: 1.2rem;
  }
}
/* Header styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #28a745; /* green background */
  color: white;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px; /* logo aur text ke beech gap */
}

header .logo img {
  width: 60px; /* logo size */
  height: auto;
}

header .logo h1 {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin: 0;
}
/* Logo + Name container */
.logo-container {
  display: flex;          /* Logo aur text ko horizontal line me laane ke liye */
  align-items: center;    /* Vertically center align */
  gap: 10px;              /* Logo aur text ke beech gap */
}

/* Logo size */
.logo {
  height: 50px;           /* Aapki requirement ke hisab se height adjust karein */
  width: auto;
}

/* Site name */
.site-name {
  color: white;           /* White letter */
  font-size: 24px;        /* Size adjust karein */
  font-weight: bold;
  font-family: Arial, sans-serif; /* Consistent font */
}

