body{
    background-color: #fefefe;
}  
        .profile{
            border: 2px green solid;
            border-radius: 50%;
            padding: 2px;
            }

        .search-container {
           background-image: url('../img/search-bg.png');
           background-position: center;
           padding-bottom: 70px;
           padding-top: 70px ;
           border-radius: 8px;
           box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
        }

        .search-container input {
            border: none;
            padding: 15px;
            border-radius: 5px;
            border: 2px #800000 solid;
            border-radius: 15px;
        }

        .filters {
            padding: 20px;
            margin-bottom: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .filters h6 {
            color: #007bff;
        }

        .card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .card-img-top {
            width: 50%;
            margin: auto;
            background-color: #f7f8fa;
            margin-top: 10px
        }

        .card-body {
            text-align: center;
        }

        .card-body h5 {
            font-weight: 600;
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
        }

        .card-body p {
      color: #6c757d;
      font-size: 0.9rem;
      margin: 0;
        }

        .card-body small {
            color: #6c757d;
        }

        .btn-primary {
            background-color: #007bff;
            border: none;
            border-radius: 5px;
            padding: 10px 20px;
            transition: background-color 0.3s;
        }

        .btn-primary:hover {
            background-color: #0056b3;
        }
        .profile-link{
            text-decoration: none;
        }
        @media (max-width: 380px) {
            .card-body h5 {
          margin-bottom: 0.5rem;
          font-size: 0.7rem;
            }
        }
        