/* Frontend Styles for Doctor Section */
.doctor-section {
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    padding: 80px 0;
    width: 100%;
    margin: 0;
}

.doctor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

/* Left Side: Doctor Image and Info */
.doctor-image-wrapper {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.doctor-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.doctor-name {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.doctor-credentials {
    font-size: 14px;
    color: #028476;
    font-weight: 400;
}

/* Right Side: Doctor Content */
.doctor-content h3 {
    font-size: 28px;
    font-weight: 200 !important;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    color:white;
}

.doctor-content h2 {
    font-size: 36px;
    font-weight: 200 !important;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    color:white;
}

.doctor-content p {
    font-size: 18px;
    color: white;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .doctor-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .doctor-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .doctor-container {
        padding: 0 20px;
    }

    .doctor-content h3 {
        font-size: 24px;
    }

    .doctor-content p {
        font-size: 18px;
    }

    .doctor-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .doctor-image-wrapper {
        padding: 20px;
    }

    .doctor-name {
        font-size: 20px;
    }

    .doctor-credentials {
        font-size: 13px;
    }

    .doctor-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .doctor-content p {
        font-size: 14px;
    }

    .doctor-section {
        padding: 40px 0;
    }
}
