body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
  }
  
  .navbar {
    background-color: #222;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
  }
  
  .navbar .logo {
    font-size: 1.25rem;
    font-weight: bold;
  }
  
  .navbar .nav-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .navbar .nav-links a {
    color: white;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
  }
  
  .navbar .nav-links a:hover {
    text-decoration: underline;
  }
  
  /* Cart styling */
  .cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    line-height: normal;
  }
  
  .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #f44336;
    color: white;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #collection-title {
    text-align: center;
    margin: 40px 0 20px;
  }

  #collection-title h2 {
    font-size: 1.75rem !important; /* Reduced from default h2 size */
    margin-bottom: 1rem;
  }
  
  #service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 20px;
  }
  
  .service-card {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 550px; /* Fixed height for all cards */
    position: relative;
  }

  .service-card h3 {
    font-size: 1.35rem; /* Smaller title size */
    margin-top: 0.75rem;
  }

  .service-card a {
    margin-top: auto; /* Push button to bottom */
    padding-top: 15px;
  }
  
  .service-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    background-color: #f8f9fa;
  }
  
  .service-card .price {
    font-weight: bold;
    color: #007BFF;
  }

  .btn-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: white !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    padding: 10px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    width: auto !important;
    min-width: 120px !important;
    display: inline-block !important;
  }

  .btn-primary:hover {
    background-color: #0b5ed7 !important;
    border-color: #0b5ed7 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
  }

  .service-card .btn-primary {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    color: white !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    padding: 10px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    width: auto !important;
    min-width: 120px !important;
    display: inline-block !important;
    margin-top: 10px !important;
  }

  .service-card .btn-primary:hover {
    background-color: #0b5ed7 !important;
    border-color: #0b5ed7 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
  }

  .hero-banner {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 0.5rem;
  }
  
  .hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.8); /* optional for extra dimming */
  }

  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px auto;
    justify-content: center;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  }
  
  .filter-bar select,
  .filter-bar input[type="range"],
  .filter-bar button {
    padding: 10px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
  }
  
  .filter-bar button {
    background-color: #007BFF;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
  }
  
  #price-value {
    align-self: center;
    font-weight: 500;
  }
  
  
  .hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(127, 158, 216, 0.3); /* deep blue overlay */
    pointer-events: none;
    border-radius: 0.5rem;
  }
  
  /* Turn off brightness filter */
.no-filter-banner img {
    filter: none !important;
  }
  
  /* Turn off overlay */
  .no-filter-banner::after {
    display: none !important;
  }

/* Footer Styles */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 60px;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #999;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 10px;
  color: #ccc;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #999;
}


