/* Education Card */

.devx-experience-card{

    background:#fff;

    border-radius:12px;

    padding:25px;

    margin-bottom:25px;

    border:1px solid #e5e5e5;

    box-shadow:0 3px 12px rgba(0,0,0,.08);

    transition:.3s;

}

.devx-experience-card:hover{

    transform:translateY(-3px);

}

.experience-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.experience-header h3{

    margin:0;

    color:#0d6efd;

}

.experience-period{

    background:#eef5ff;

    color:#0d6efd;

    padding:6px 15px;

    border-radius:20px;

    font-weight:600;

}

@media(max-width:768px){

.experience-header{

    flex-direction:column;

    align-items:flex-start;

    gap:10px;

}

}
/* ===========================
   Empty State
=========================== */

.devx-empty{

    text-align:center;

    padding:50px;

    background:#fafafa;

    border:2px dashed #d9d9d9;

    border-radius:12px;

    margin-top:20px;

}

.devx-empty-icon{

    font-size:60px;

    margin-bottom:15px;

}

.devx-empty h3{

    margin-bottom:10px;

    color:#333;

}

.devx-empty p{

    color:#777;

    font-size:15px;

}