.team-card {
    background: linear-gradient(135deg, #082b4e, #135f5e, #1fa2b3);
    border-radius: 16px; /* Bevel effect */
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: scale(1.02);
}

.team-card .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    background-color: #fff;
    padding: 10px;
}

.team-card img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-card .card-body {
    color: white;
}

.team-card .card-title,
.team-card .card-text {
    color: white;
}

/* استایل مدال */
.modal-content {
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background-color: #197c7b;
    color: white;
    border-radius: 12px 12px 0 0 !important;
}