body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

html {
  scroll-behavior: smooth;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #444;
  color: #fff;
}

nav .logo {
  display: flex;
  align-items: center;
}

nav img {
  max-height: 50px;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 1rem;
}

.product-card img {
  max-width: 100%;
  object-fit: cover;
  height: 200px; /* Increase the height of the image */
  width: 100%; /* Ensure the image takes up the full width of the container */
  margin-bottom: 1rem;
}

.product-card h3 {
  margin: 0.5rem 0;
}

.product-card p {
  margin: 1rem 0;
  color: #555;
}

.product-card .price {
  font-weight: bold;
  color: #28a745;
  margin: 0.5rem 0;
}

.btn {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #218838;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: #fff;
  margin-top: 2rem;
}

.section-title {
  margin-bottom: 1rem;
  text-align: center;
}

/* Contact Box Styling */
.contact-box {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 2rem;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
}

.contact-box .social-links a {
  margin: 0 10px;
}

.contact-box .social-links img {
  width: 40px;
  height: 40px;
  margin: 5px;
}

.close-btn {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-top: 1rem;
  cursor: pointer;
}

.close-btn:hover {
  background: #c82333;
}
