/* Provider Card Styling */
.provider-card {
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.provider-card:hover {
    transform: translateY(-5px);
}

.provider-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.provider-title {
    font-weight: 500;
    margin: 10px 0;
    font-size: 1.1rem;
}

.provider-bio {
    font-size: 0.9rem;
    margin: 10px 0;
    flex-grow: 1;
}

/* Provider Profile Styling */
.provider-profile-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.provider-category {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    margin: 15px 0;
    display: inline-block;
    color: white;
}

/* Resource Card Styling */
.resource-card {
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .provider-card {
        min-height: 300px;
        margin-bottom: 20px;
    }
    
    .provider-profile-image {
        width: 150px;
        height: 150px;
    }
}

.navbar-brand img {
    max-width: 200px;
}