/* General Styling */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff6e1;
}

/* Header */
header {
    background-image: url("../assets/css/head.png");
    color: #070707;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  header .logo {
    display: flex;
    align-items: center;
  }
  
  header .logo img {
    width: 50px;
    margin-right: 10px;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
  }
  
  header nav ul li {
    margin: 0 10px;
  }
  
  header nav ul li a {
    color: #0b0b0b;
    text-decoration: none;
  }
.logo {
    font-size: 24px;
    font-weight: bold;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.search-box input {
    border: none;
    padding: 10px;
    width: 250px;
    outline: none;
}

.search-box button {
    background: #008CBA;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* Filters Section */
.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px;
}

.filters select, .filter-btn {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
}

/* Psychologists List */
.psychologists-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

/* Psychologist Card */
.psychologist-card {
    background: white;
    width: 280px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-align: center;
}

.psychologist-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.psychologist-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.details h3 {
    margin: 10px 0;
    color: #333;
}

.details p {
    margin: 5px 0;
    color: #666;
}

.contact-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background-color: #388E3C;
}