/* Doctor Profile Sidebar Styles */
.doctor-profile-sidebar {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
}

.doctor-profile-sidebar .img-holder {
    margin-bottom: 25px;
    text-align: center;
}

.doctor-profile-sidebar .img-holder img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.title-about {
    text-align: center;
    margin-bottom: 30px;
}

.title-about .head-about {
    color: #102E50;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.title-about h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.title-about h4 {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}



.contact-info h3 {
    color: #102E50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info li:last-child {
    margin-bottom: 0;
}

.contact-info .icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #102E50;
}

.contact-info .text {
    flex: 1;
}

.contact-info .text p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-info .text a {
    color: #102E50;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .text a:hover {
    color: #007bff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .doctor-profile-sidebar {
        margin-top: 30px;
    }
    
    .doctor-profile-sidebar .img-holder img {
        max-width: 250px;
    }
}

@media (max-width: 767px) {
    .doctor-profile-sidebar {
        padding: 20px;
    }
    
    .title-about .head-about {
        font-size: 22px;
    }
    
    .title-about h3 {
        font-size: 16px;
    }
    
    .title-about h4 {
        font-size: 14px;
    }
} 
