.btn-blue { background-color: #1e3a8a; color: white; border-radius: 50px; border: none; transition: 0.3s; text-decoration: none; }
.btn-blue:hover { background-color: #162a63; transform: scale(1.05); color: white; }

.profile-container { padding: 80px 0px; }

.profile-card {
    background: white; border-radius: 30px; overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05); border: 1px solid #fff;
}

.doctor-sidebar {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 40px; text-align: center; border-right: 1px solid #eee;
}

/* --- Fee Badge Section --- */
.fee-badge {
    background: #f0fdf4;
    border: 1px dashed #28a745;
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fee-label { font-size: 0.75rem; color: #1e3a8a; font-weight: 700; text-transform: uppercase; }
.fee-amount { font-size: 1.4rem; color: #28a745; font-weight: 800; }

.img-popup-trigger {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 20px;
}
.img-popup-trigger:hover .main-doc-img {
    filter: brightness(80%);
    transform: scale(1.02);
}
.img-popup-trigger::after {
    content: "\f00e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: 0.3s;
}
.img-popup-trigger:hover::after { opacity: 1; }

.main-doc-img {
    width: 200px; height: 200px; border-radius: 50%; object-fit: cover;
    border: 6px solid #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    transition: 0.3s;
}

.social-links { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
.social-links a { 
    width: 35px; height: 35px; border-radius: 50%; background: #e2e8f0; 
    color: #1e3a8a; display: flex; align-items: center; justify-content: center; 
    transition: 0.3s; text-decoration: none;
}
.social-links a:hover { background: #1e3a8a; color: white; transform: translateY(-3px); }

.info-section { padding: 40px; }
.doc-bio {
    line-height: 1.8; color: #475569; font-size: 0.95rem;
    margin-bottom: 30px; text-align: justify;
}
.section-title {
    font-size: 1.1rem; font-weight: 700; color: #1e3a8a;
    margin-bottom: 15px; display: flex; align-items: center; gap: 10px;
}
.section-title i { color: #28a745; }

.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.contact-item i { width: 40px; height: 40px; background: #f0fdf4; color: #28a745; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item p { margin: 0; font-size: 0.9rem; color: #475569; }
.contact-item strong { display: block; color: #1e3a8a; font-size: 0.8rem; text-transform: uppercase; }

.tag-container { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.tag { background: #f1f5f9; color: #475569; padding: 5px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 500; }

.timing-card { background: #1e3a8a; color: white; border-radius: 20px; padding: 20px; }
.timing-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
.urgent-help-box {
    background: #fff5f5; border-left: 5px solid #dc3545;
    padding: 20px; border-radius: 15px;
}

.modal-content { border-radius: 25px; border: none; overflow: hidden; }
.modal-header { border: none; }

@media (max-width: 991px) {
    .profile-container { padding: 40px 15px; }
    .doctor-sidebar { border-right: none; border-bottom: 1px solid #eee; }
}