.doctor-profile-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.doctor-profile-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23007bff" opacity="0.05"/></svg>') repeat;
    opacity: 0.1;
}

.doctor-profile-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.doctor-profile-image {
    flex: 0 0 400px;
    position: relative;
    
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.doctor-profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.2), transparent);
    z-index: 1;
}

.doctor-profile-image img {
    
    max-width: 320px;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    
    background: #f8f9fa;
    transition: transform 0.5s ease;
}

.doctor-profile-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .doctor-profile-image img {
        max-width: 220px;
        max-height: 280px;
    }
}

.doctor-profile-info {
    flex: 1;
    padding: 20px;
}

.doctor-profile-info h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.doctor-profile-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #007bff;
}

.doctor-profile-info p {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 20px;
}

.doctor-profile-info .specialization {
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: -5px;
}

.doctor-profile-info .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.achievement-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.achievement-item h4 {
    color: #007bff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.achievement-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .doctor-profile-content {
        flex-direction: column;
        padding: 20px;
    }

    .doctor-profile-image {
        flex: 0 0 300px;
        width: 100%;
    }

    .doctor-profile-image img {
        height: 400px;
    }

    .achievements {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .doctor-profile-area {
        padding: 40px 0;
    }

    .doctor-profile-image {
        flex: 0 0 250px;
    }

    .doctor-profile-image img {
        height: 300px;
    }

    .doctor-profile-info h3 {
        font-size: 2rem;
    }
}

.doctor-bio-list {
    margin-bottom: 30px;
    padding-left: 20px;
    color: #444;
    font-size: 1.08rem;
    line-height: 1.8;
}

.doctor-bio-list li {
    margin-bottom: 12px;
    list-style: disc inside;
}

