.team-head{
    min-height: 30%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.team-head h1{
    width: 40%;
    text-align: center;
}

.our-team{
    width: 100%;
    min-height: 100%;
}

.our-team-card {
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #c1c1c1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.our-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 16px 2px rgba(0, 0, 0, 0.3);
}

.profile-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    border: 5px solid rgb(166, 166, 166);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* .profile-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
} */

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background-color: white;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 10px 0 5px;
    color: #2d3748;
}

.team-position {
    color: #718096;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .our-team-card {
        margin-bottom: 30px;
    }
}