/* Custom CSS for logo */
.navbar-brand img {
    max-height: 80px; /* Adjust the height as per your logo's size */
    width: auto;
  }

  /* Custom CSS for navbar link color and font weight */
  .navbar-nav .nav-link {
    color: #28a745;
    font-weight: bold;
  }

  .carousel-item img {
    width: 100%;
    height: auto;
  }

  .carousel-control-prev, .carousel-control-next {
    width: 5%; /* Adjust control size */
  }
  /* Custom CSS for card */
  .card {
    border: none;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  }
  .card-title {
    font-weight: bold;
    font-size: 1.25rem;
    color: #333; /* Dark text color */
  }
  .card-img-top {
    height: 200px; /* Adjust the height of the card image */
    object-fit: cover; /* Ensure the image covers the entire card */
  }
  .card-body {
    background-color: #f8f9fa; /* Light background color */
  }
  .view-more {
    text-align: right; /* Right align the "View More" link */
    color: #28a745;
    margin-top: 10px;
  }
  .main-title{
    color: #28a745;
  }
  .card-body {
    background-color: #f8f9fa; /* Light background color */
  }
  .card-details {
    margin-top: 10px;
  }
  .dropdown-full-width {
    width: 100%;
    border: 1px solid #545b62 !important; /* Border color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important; /* Shadow */
  }  
  .dropdown-full-width a.dropdown-item {
    width: 100%; 
  } 
  .dropdown-menu{
    width: 100%;
  }
  body {
    font-family: 'Roboto', sans-serif; /* Change the font family for the entire site */
  }

  .navbar-dark{
    background-color: #ffffff;
  }
  .home-heading{
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2rem !important;
  }

   /* WhatsApp Order Button */
.whatsapp-order-button {
  background-color: #4CAF50; /* Green background */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.whatsapp-order-button:hover {
  background-color: #45a049; /* Darker green on hover */
}

/* Premium Homepage Look */
body {
  background-color: #c6c6c6;
}

.container {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #333;
}