
/* Seekers Grid */
.seekers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.seeker-card {
    background: #f0eff5;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.seeker-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.verified-badge {
    margin: 0 3px;
    display: flex;
}
.verified-badge svg {
    display: block;
}
.seeker-card h3{
    color: var(--middleColor);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}


.seeker-card h3:hover {
    color: var(--helperColor);
}

.seeker-name {
    color: #666;
    display: inline-flex;
    direction: rtl;
    font-weight: bold;
    font-size: 20px;
}

.seeker-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    margin-block: 1.5rem;;
}

.seeker-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.seeker-meta .profession {
  white-space: nowrap;        /* Prevent text from wrapping to new line */
  overflow: hidden;           /* Hide the rest */
  text-overflow: ellipsis;    /* Add the ... at the end */
  max-width: 200px;           /* Adjust to how much space you want */
  display: inline-block;

}
.seeker-details h2 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.seeker-details .verified-badge svg {
   margin-top: .25rem;
}


.seekers-link{  
    margin-block: 20px;  
}
.seekers-link a{  
    margin-block: 20px;  
    padding: 5px 20px;
    color: var(--white);
    border-radius: var(--radius1);
    background-color: var(--helperColor);
}
.seeker-bio{
    color: #575757;
    margin: 10px 0;
    font-size: 18px;
}
.seekers-contact{
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}
.seekers-contact div {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 3px 10px;
    color: var(--white);
    border-radius: var(--radius1);
}
.seekers-contact div a{
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 3px 10px;
    color: var(--white);
    
}
.seekers-contact .whatsapp{
    background-color: var(--whatsappColor);

}
.seekers-contact .phone{
    background-color: var(--blue);
}
/* Responsive Design */
/* @media (max-width: 480px) {
    .seekers-grid {
        grid-template-columns: repeat(auto-fit, minmax(162px, 1fr));
    }
    .seekers-contact{
        gap: .7rem;
    }
} */