header {
  background-color: #333;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}


nav ul {
  list-style-type: none;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
}

nav ul li a:hover {
  background-color: #555;
}



.icon-toggle {
  margin-right: 8px;
}

.container {
  text-align: center;
}

/* Existing styles omitted for brevity */
.cart-icon {
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin-right: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Modal (popup) Styles */
.cart-menu-hidden {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  z-index: 1000;
  display: none;
}

.cart-menu-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  width: 300px;
  max-height: 80%;
  overflow-y: auto;
}

.cart-menu-content h2 {
  margin-top: 0;
  font-size: 1.5rem;
  text-align: center;
}

.cart-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.cart-menu-hidden.visible {
  display: block;
}

.close-cart-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
}

/* Style for cart items */
.cart-menu-content ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.cart-menu-content li {
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}

.checkout-button, .clear-button {
  width: 48%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.checkout-button {
  background-color: #28a745;
  color: #fff;
}

.checkout-button:hover {
  background-color: #218838;
}

.clear-button {
  background-color: #dc3545;
  color: #fff;
}

.clear-button:hover {
  background-color: #c82333;
}


.container {
  text-align: center;
}

.rate-button {
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  border: 2px solid #007bff;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.rate-button:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.rating-stars {
  margin-top: 10px;
}

.rating-stars.hidden {
  display: none;
}

.rating-stars .star {
  font-size: 24px;
  color: #ffd700;
  cursor: pointer;
  transition: color 0.3s;
}

.rating-stars .star:hover,
.rating-stars .star.active {
  color: #ffcc00;
}

.about-us {
  background-image: url('/assets/bachground.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  font-size: large;
  color: white;
}



.card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-image: url('/assets/spices-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card {
  width: 300px;
  margin: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
color: white;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.card-img {
  width: 200%;
  height: auto;
  display: inline-block;
  margin: 5px;


}

.card-content {
  padding: 20px;
  
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;

}

.card-text {
  font-size: 1rem;
  color: black;
  line-height: 1.6;
  color: white;
}

.btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  margin-top: 10px;
}

.btn:hover {
  background-color: #0056b3;
}

.contact-section {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: 50px auto;
  max-width: 800px;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-image: url('/assets/bachground.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.contact-info,
.contact-form {
  flex: 1;
  padding: 20px;
  color: white;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 10px;
}

.contact-info p {
  margin: 8px 0;
}

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

.contact-form input,
.contact-form textarea {
  margin-bottom: 10px;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left,
.footer-right,
.footer-bottom {
  width: 33.33%;
  text-align: center;
  padding: 0 20px;
}

.footer-left {
  border-right: 1px solid #777;
}

.footer-right {
  border-left: 1px solid #777;
}

.footer h3 {
  color: #fff;
  font-size: 1.5rem;
}

.footer p {
  color: #ccc;
  font-size: 1rem;
}

.social-icons {
  list-style-type: none;
  padding: 0;
}

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

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}

.social-icons a:hover {
  color: #007bff;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
}

.footer-bottom p,
.footer-bottom ul {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.footer-bottom ul {
  list-style-type: none;
}

.footer-bottom ul li {
  display: inline-block;
  margin-right: 10px;
}

.footer-bottom ul li a {
  color: #ccc;
  text-decoration: none;
}

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


