/* ==========================
   PROFILE PAGE
========================== */

.page-title{
    margin:25px 30px 10px;
}

.page-title h2{
    font-size:30px;
    font-weight:700;
    color:#1e293b;
}

.profile-container{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
    padding:20px 30px 40px;
}

/* Left Card */

.profile-card{

    background:#fff;

    border-radius:15px;

    padding:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

/* Profile Image */

.profile-image{

    text-align:center;

    margin-bottom:30px;

}

.profile-image img{

    width:140px;

    height:140px;

    border-radius:50%;

    object-fit:cover;

    border:6px solid #2563eb;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.change-photo{

    display:inline-block;

    margin-top:15px;

    background:#2563eb;

    color:#fff;

    border:none;

    padding:10px 18px;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

}

.change-photo:hover{

    background:#1d4ed8;

}

/* Form */

.row{

    display:flex;

    gap:20px;

    margin-bottom:20px;

}

.form-group{

    flex:1;

}

.form-group.full{

    flex:100%;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#374151;

}

.form-group input,

.form-group select,

.form-group textarea{

    width:100%;

    padding:12px;

    border:1px solid #d1d5db;

    border-radius:8px;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus{

    border-color:#2563eb;

    box-shadow:0 0 0 3px rgba(37,99,235,.15);

}

/* Button */

.save-btn{

    background:#2563eb;

    color:#fff;

    border:none;

    padding:14px 30px;

    border-radius:10px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.save-btn:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

}

/* Right Stats Card */

.stats-card{

    background:#fff;

    border-radius:15px;

    padding:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    height:fit-content;

}

.stats-card h3{

    text-align:center;

    margin-bottom:25px;

    color:#1e293b;

    font-size:24px;

}

.stat-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px;

    margin-bottom:15px;

    border-radius:10px;

    background:#f8fafc;

    transition:.3s;

}

.stat-item:hover{

    background:#eef4ff;

}

.stat-item i{

    color:#2563eb;

    font-size:22px;

    width:30px;

}

.stat-item span{

    flex:1;

    margin-left:10px;

    color:#374151;

}

.stat-item strong{

    color:#2563eb;

    font-size:18px;

}

/* Responsive */

@media(max-width:992px){

.profile-container{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.row{

flex-direction:column;

}

.page-title{

margin:20px;

}

.profile-container{

padding:20px;

}

.profile-image img{

width:120px;

height:120px;

}

.save-btn{

width:100%;

}

}