
.agent-profile-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.agent-profile-card .rounded-circle {
    border: 4px solid #28a745;
}

.agent-profile-card h4 {
    font-weight: 700;
    color: #333;
}

.agent-profile-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.agent-profile-card .contact-info a {
    color: #28a745;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.agent-profile-card .contact-info a:hover {
    color: #218838;
}

.agent-profile-card .contact-info i {
    margin-right: 10px;
}
