/* Meet The Doctors Page Styles */

.navbar {
    background: linear-gradient(#0b3f56,#0e4f6d) !important;
}

.meet-doctors-page {
    background: linear-gradient(#151d28, #0e4f6d);
    min-height: 100vh;
    color: #ffffff;
    padding: 160px 0 60px 0;
    font-family: 'Poppins', sans-serif;
}

.meet-doctors-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.doctors-header {
    margin-bottom: 50px;
}

.doctors-title {
    font-size: 3rem;
    font-weight: 400;
    color: #38bdf8;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.doctors-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 0;
    text-align: justify;
    font-weight: 300;
}

/* Doctors List */
.doctors-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Doctor Card */
.doctor-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.doctor-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Doctor Image */
.doctor-image {
    flex-shrink: 0;
    width: 350px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.doctor-image:hover img {
    transform: scale(1.05);
}

/* Doctor Info */
.doctor-info {
    flex: 1;
}

.doctor-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.doctor-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 15px;
    text-align: justify;
    font-weight: 300;
}

.doctor-description p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .meet-doctors-page {
        padding: 100px 0 40px 0;
    }

    .meet-doctors-content {
        padding: 0 15px;
    }

    .doctors-title {
        font-size: 2rem;
    }

    .doctors-intro {
        font-size: 0.9rem;
        text-align: left;
    }

    .doctor-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .doctor-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .doctor-name {
        font-size: 1.2rem;
    }

    .doctor-description p {
        font-size: 0.85rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .doctors-title {
        font-size: 1.8rem;
    }

    .doctors-intro {
        font-size: 0.85rem;
    }

    .doctor-image {
        width: 120px;
        height: 120px;
    }

    .doctor-name {
        font-size: 1.1rem;
    }

    .doctor-description p {
        font-size: 0.8rem;
    }

    .doctors-list {
        gap: 30px;
    }

    .doctor-card {
        padding-bottom: 30px;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doctor-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.doctor-card:nth-child(1) { animation-delay: 0.1s; }
.doctor-card:nth-child(2) { animation-delay: 0.2s; }
.doctor-card:nth-child(3) { animation-delay: 0.3s; }
.doctor-card:nth-child(4) { animation-delay: 0.4s; }
.doctor-card:nth-child(5) { animation-delay: 0.5s; }
.doctor-card:nth-child(6) { animation-delay: 0.6s; }
.doctor-card:nth-child(7) { animation-delay: 0.7s; }