/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  
  /* Navbar Styles */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff7043; /* Orange background color */
    padding: 15px;
    height: 50px;
    overflow: visible; /* Allow overflow for larger logo */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Add subtle shadow for better visibility */
    margin: -10px;
}

nav .logo {
    font-size: 24px;
    font-weight: 600;
    color: white;
    line-height: 1; /* Center text if any text is there */
    display: flex;
    align-items: center;
}

.logo img {
    width: 70px; /* Reduced logo width */
    height: 70px; /* Reduced logo height */
    margin-right: 10px; /* Add space between logo and text if applicable */
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 20px; /* Increased spacing for better readability */
    margin: 0;
    padding: 0;
}

nav .nav-links a {
    color: black; /* Default color for links */
    text-decoration: none;
    padding: 8px 12px; /* Better padding for clickable area */
    font-size: 16px; /* Adjusted font size */
    font-weight: 500;
    border-radius: 4px; /* Rounded corners for hover effect */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

nav .nav-links a:hover {
    color: white; /* Keep text white on hover */
}

nav .nav-links .active {
    color: white; /* White text for active link */
}
  
  /* Page Header */
  .page-header {
    text-align: center;
    background-color: #d6eaff;
    height: 150px;
  }
  
  .page-header h1 {
    font-size: 36px;
    color: #333;
  }
  
  .page-header p {
    font-size: 18px;
    color: #555;
  }
  
  /* Search and Filters */
  .search-filters {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  .search-bar input {
    padding: 10px;
    font-size: 16px;
    width: 60%;
    border: 2px solid #ff7043;
    border-radius: 5px;
  }
  
  .search-bar button {
    padding: 10px 15px;
    background-color: #ff7043;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .search-bar button:hover {
    background-color: #ff5722;
  }
  
  .filters select {
    padding: 8px;
    border-radius: 5px;
    border: 2px solid #ff7043;
    margin-right: 15px;
  }
  
  /* Vendor Card Styles */
  .vendor-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    background-color: #d6eaff;
  }
  
  .vendor-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .vendor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  .vendor-card h3 {
    font-size: 24px;
    color: #333;
  }
  
  .vendor-card p {
    font-size: 16px;
    color: #555;
  }
  
  .vendor-card button {
    padding: 10px 20px;
    background-color: #ff7043;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
  }
  
  .vendor-card button:hover {
    background-color: #ff5722;
  }
  