.our-team-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.team-card .team-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    inline-size: 150px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;

}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}



.team-card .profession {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
    list-style: circle;
    padding: 0;
    text-align: right;
}

.team-card .short-desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

.team-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.call-btn,
.profile-btn {
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease;
    font-weight: 900;
}

.call-btn {
    background: #007bff;
}

.call-btn:hover {
    background: #0056b3;
}

.profile-btn {
    background: #28a745;
}

.profile-btn:hover {
    background: #1e7e34;
}


.filter-title {
    padding-inline: 1rem;
    max-width: 1200px;
    margin: auto;

    font-size: 0.7rem;
    color: #777;
}

.btn-order {
    padding: 0.7rem 1.3rem;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 3rem;
    transition: background-color .2s ease, transform .1s ease;
    font-weight: 600;
    display: inline-block;
}

.topleadbannercont {
    height: 300px;
}

@media (max-width: 767px) {
    .topleadbannercont {
        height: 300px;
    }

    .btn-order {
        display: none;
    }
}