.resume-hero {
    min-height: 600px;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
}

.mobile-profile {
    display: none;
}

@media (max-width: 991.98px) {
    .desktop-profile {
        display: none !important;
    }

    .mobile-profile {
        display: block;
    }
}
/* end index */

.profile-id {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #800E33;
    background: rgba(128, 14, 51, 0.08);
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 4px;
}
.profile-header-section .progress {
    background-color: #f0f0f0;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.profile-header-section .progress-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(90deg, #FF4081, #800E33);
}

.progress-label {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.file-style-dropdown {
    position: relative;
}

.file-style-dropdown select.custom-filter {
    width: 100%;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #ced4da;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.file-style-dropdown .dropdown-arrow {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #800E33;
    font-size: 12px;
}

.file-style-dropdown .files-count {
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    background: #800E33;
    color: #fff;
    padding: 2px 6px;
    border-radius: 12px;
}

.profile-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.profile-card:hover {
    transform: translateY(-6px);
}

.profile-img {
    position: relative;
}

.profile-img img {
    width: 100%;
    object-fit: cover;
}

.view-icon {
    position: absolute;
    top: 7px;
    right: 7px;
    background: #fff;
    padding: 1px 4px;    
    border-radius: 50%;
}

.view-icon i {
    font-size: 16px;
    color: #800E33;
}

.crown-icon {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.crown-icon i {
    font-size: 11px;
    color: #fff;
}

.overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
}

.profile-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-content h5 {
    margin-bottom: 6px;
}

.profile-content p {
    font-size: 15px;
    color: #666;
}

.profile-actions {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.match-pill {
    width: 60px;
    height: 60px;
    position: relative;
}

.match-pill svg {
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #e3e7ee;
    stroke-width: 4;
}

.circle {
    fill: none;
    stroke: #A6264C;
    stroke-width: 4;
    stroke-linecap: round;
}

.match-text {
    position: absolute;
    top: 44%;
    left: 54%;
    transform: translate(-50%, -50%);
    
    display: flex;
    flex-direction: column;   
    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 600;
    color: #A6264C;
    line-height: 1;
}

.match-text i {
    font-size: 11px;
    margin-bottom: 2px;  
}

.action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none !important;
    outline: none !important;
}

.action-btn.danger { background: linear-gradient(135deg, #C2185B, #FF4081); }
.action-btn.primary { background: linear-gradient(135deg, #800E33, #B0003A); }
.action-btn.success { background: linear-gradient(135deg, #1E3C72, #212E47); }

.circular-progress-container {
    display: none;
}
@media (min-width: 360px) and (max-width: 991px) {
    .circular-progress-container {
        display: block !important;
        position: absolute;
        top: 5px;
        left: 5px;
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.85);
        border-radius: 50%;
        padding: 3px;
        z-index: 5;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .circular-chart {
        display: block;
        width: 100%;
        height: 100%;
    }

    .circle-bg {
        fill: none;
        stroke: #eee;
        stroke-width: 3.5;
    }

    .circle {
        fill: none;
        stroke: #A6264C;
        stroke-width: 3.5;
        stroke-linecap: round;
    }

    .percentage {
        fill: #800E33;
        font-size: 10px;
        font-weight: 800;
        text-anchor: middle;
    }
    .crown-icon{
        display: none;
    }

}

@media (min-width: 360px) and (max-width: 575px) {
    .match-pill { display: none; }

    .action-btn {
        width: 34px;
        height: 34px;
    }

    .profile-content p {
        font-size: 12px;
    }



}
@media (min-width: 360px) and (max-width: 420px) {
    .overlay {
        bottom: 6px;      
        left: 6px;       
        display: block;  
    }
    .overlay .badge {
        font-size: 9px;   
        padding: 4px 4px;
    }

}

@media (min-width: 576px) and (max-width: 991px) {

    .crown-icon { display: none; }
    .match-pill { display: none; }

    .action-btn {
        width: 38px;
        height: 38px;
    }

    .circular-progress-container {
        display: block !important;
        position: absolute;
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
    }
}


@media (min-width: 992px) and (max-width: 1199px) {
    .profile-actions {
        gap: 4px;
        background: #f9f9f9;
        border-radius: 10px;
        padding: 4px;
    }

    .overlay { bottom: 8px; left: 8px; }

    .overlay .badge { font-size: 8px; }

    .match-pill {
        margin-top: 8px;
        width: 42px;
        height: 47px;
    }

    .match-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 9px;
        top: 40%;
        left: 53%;
    }

    /* .match-text i {
        display: none;
    } */

    .action-btn {
        width: 40px;
        height: 40px;
    }
    .action-btn i{
        font-size: 18px;    
    }

    .profile-content h5 {
        font-size: 16px;         
    }
    .profile-content p {
        font-size: 15px;         
    }
    .view-icon {
        top: 4px;
        right: 7px;

        width: 26px;
        height: 26px;
        padding: 2;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        backdrop-filter: blur(4px);
    }

    .view-icon i {
        font-size: 12px;
        color: #800E33;
    }

    .crown-icon {
        top: 4px;
        left: 6px;

        width: 25px;
        height: 25px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        background: linear-gradient(135deg, #FFD700, #FFA500);
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .crown-icon i {
        font-size: 11px;
    }

}

@media (min-width: 1200px)  and (max-width: 1399px) {
    .match-pill {
        margin-top: 8px;
    }
    .match-text {
        top: 31%;
        left: 53%;
    }
    .overlay {
        bottom: 10px;
        left: 10px;
        display: flex;
    }

    .overlay .badge {
        font-size: 10px;
    }

    .overlay .badge i {
        font-size: 10px;
    }

}

.custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.3px;
}

.btn-horoscope {
    background: linear-gradient(135deg, #800E33, #B0003A);
}

.btn-idproof {
    background: linear-gradient(135deg, #C2185B, #FF4081);
}

.custom-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    color: #fff;
}

.custom-btn i {
    font-size: 16px;
}

@media (min-width: 991px) and (max-width: 1200px) {
    .custom-btn {
        font-size: 11px;
        padding: 9px 18px;
        gap: 8px;
    }

    .custom-btn i {
        font-size: 14px;
    }
}

@media (min-width: 1201px) and (max-width: 1399px) {
    .profile-actions {
        gap: 6px;
        padding: 6px;
        border-radius: 12px;
        background: #f9f9f9;
        justify-content: space-between;
        align-items: center;
    }

    .match-pill {
        width: 50px;
        height: 50px;
    }

    .match-text {
        font-size: 8px;
        top: 38%;
        left: 52%;
    }

    .action-btn {
        width: 35px;
        height: 35px;
    }

    .action-btn i {
        font-size: 14px;
    }
}