/* Custom Styles */

/* Hero Section Background */
#hero {
    background-image: url('/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
  }
  
  #hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  #hero .container {
    position: relative;
    z-index: 1;
  }
  
  /* Card Image Styling */
  .card-img-top {
    height: 200px;
    object-fit: cover;
  }
  
  /* Ensure cards have equal height */
  .card {
    border: none;
  }
  
  .card-body {
    display: flex;
    flex-direction: column;
  }
  
  /* Footer Text Size */
  footer p {
    font-size: 0.9rem;
  }
  
  /* Navbar Brand Styling */
  .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  /* Active Link Styling */
  .nav-link.active {
    font-weight: bold;
  }
  
  /* Button Hover Effect */
  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  