.doctor-about-section {
    padding: 90px 0;
    background: #f9fbfc;
    overflow: hidden;
}

.doctor-image-wrap {
    animation: fadeInLeft 1s ease forwards;
}

.doctor-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    transform: scale(0.95);
    transition: .5s;
}

.doctor-image:hover {
    transform: scale(1);
}

.doctor-content {
    animation: fadeInRight 1s ease forwards;
}

.doctor-title {
    font-size: 32px;
    font-weight: bold;
    color: #0a5c4d;
}

.doctor-name {
    margin-top: 10px;
    font-weight: bold;
}

.doctor-specialty span {
    color: #0a5c4d;
    font-weight: 600;
}

.doctor-bio {
    margin-top: 15px;
    line-height: 1.9;
    color: #555;
}

.doctor-note {
    margin-top: 20px;
    padding: 15px;
    background: #eef7f5;
    border-right: 4px solid #0a5c4d;
    font-size: 14px;
}

.doctor-btn {
    margin-top: 25px;
    padding: 12px 30px;
    font-weight: bold;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
