.talent-card{
    position : relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border-radius: 25px;
    transition: all 400ms ease;
    border: 1px solid rgba(247, 115, 41, 0.1);
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.talent-card-link {
    position : absolute;
    inset : 0;
    z-index: 1;
}
 
.talent-card:hover{
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-color: rgba(247, 115, 41, 0.3);
    transform: translateY(-8px);
}

.talent-card:hover .card-img-top{
    transform: scale(1.05);
}

.talent-card .card-img-top{
    width: 100%;
    min-height: 280px;
    max-height: 280px;
    object-fit: cover;
    object-position: center;
    transition: all 400ms ease;
    border-radius: 25px 25px 0 0;
}

.talent-card .social-icon img{
    width: 18px;
    height: auto;
    aspect-ratio: 1;
    transition: all 300ms ease;
}

.talent-card .social-icon:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.talent-card .card-body{
    padding: 20px;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
}

.talent-card .talent-location{
    font-size: clamp(11px, 2vw, 13px);
    margin-bottom: 5px;
    color: #6c757d;
    font-weight: 500;
}

.talent-card .card-title{
    font-size: clamp(18px, 2vw, 22px);
    margin-bottom: 8px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 700;
    transition: all 300ms ease;
}

.talent-card:hover .card-title {
    color: #f77329;
}

.card-text{
    font-size: clamp(13px, 2vw, 15px);
    color: #5a6c7d;
    line-height: 1.5;
}

.talent-card .card-text p {
    color: #6c757d;
    font-weight: 500;
}

.talent-checkbox{
    position: absolute;
    z-index: 9;
    left: 20px;
    top: 20px;
    height: 22px;
    width: 22px;
    accent-color: #f77329;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Enhanced dropdown styling */
.talent-card .dropdown-toggle {
    background: linear-gradient(135deg, #f77329 0%, #e55a1f 100%) !important;
    border: none !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(247, 115, 41, 0.3) !important;
    transition: all 300ms ease !important;
}

.talent-card .dropdown-toggle:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(247, 115, 41, 0.4) !important;
}

.talent-card .dropdown-menu {
    border: none !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    padding: 8px 0 !important;
    margin-top: 8px !important;
}

.talent-card .dropdown-item {
    padding: 8px 16px !important;
    font-size: 13px !important;
    transition: all 200ms ease !important;
    color: #495057 !important;
}

.talent-card .dropdown-item:hover {
    background: linear-gradient(135deg, #f77329 0%, #e55a1f 100%) !important;
    color: white !important;
    transform: translateX(4px) !important;
}

.talent-card .dropdown-item i {
    width: 16px;
    margin-right: 8px;
}

/* Social icon container enhancement */
.talent-card .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(247, 115, 41, 0.1);
    border-radius: 50%;
    transition: all 300ms ease;
}

.talent-card .social-icon:hover {
    background: rgba(247, 115, 41, 0.2);
    transform: scale(1.1);
}