﻿/* Meet the Doctors Section Styles */
.meet-the-doctors-section {
    background: linear-gradient(#12364b,#0b5f84); /* sky-400 */
    color: rgba(240, 249, 255, 1);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.doctors-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;

    
    z-index: 1;
}

.doctors-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #e0f2fe;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    position: relative;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

/*    .doctors-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: #38bdf8;
        border-radius: 2px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }*/

.doctors-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #f0f9ff;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.doctors-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.doctor-profile {
    flex: 1;
    max-width: 500px;
}

.doctor-image-container {
    flex: 1;
    max-width: 1024px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.doctor-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
    transition: all 0.4s ease;
}

    .doctor-image-wrapper:hover {
        /*transform: perspective(1000px) rotateY(0deg) scale(1.05);*/
        /*box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);*/
    }

    .doctor-image-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0.1) 100%);
        z-index: 1;
        pointer-events: none;
    }

.doctor-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
    border-radius: 18px;
    transition: all 0.4s ease;
}




.doctor-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #b8e6ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.doctor-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.doctor-credentials {
    margin-bottom: 35px;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

    .credential-item i {
        font-size: 1.2rem;
        margin-right: 12px;
        color: #FFD700;
        width: 20px;
    }

.learn-more-btn {
    display: inline-flex;
    text-align: center;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #082f49;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .learn-more-btn i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .learn-more-btn:hover {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        color: #082f49;
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    }

        .learn-more-btn:hover i {
            transform: translateX(5px);
        }

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

    .floating-element.tooth-1 {
        top: 10%;
        left: 5%;
        font-size: 3rem;
        animation-delay: 0s;
    }

    .floating-element.tooth-2 {
        top: 20%;
        right: 8%;
        font-size: 2.5rem;
        animation-delay: 2s;
    }

    .floating-element.tooth-3 {
        bottom: 15%;
        left: 10%;
        font-size: 2rem;
        animation-delay: 4s;
    }

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(5deg);
    }

    66% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .doctors-content {
        gap: 50px;
    }

    .doctors-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 968px) {
    .doctors-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .doctor-image-wrapper {
        transform: none;
        max-width: 350px;
    }

        .doctor-image-wrapper:hover {
            transform: scale(1.05);
        }

    .doctors-title {
        font-size: 2.5rem;
    }

    .doctor-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .meet-the-doctors-section {
        padding: 80px 0;
    }

    .doctors-container {
        padding: 0 15px;
    }

    .doctors-content {
        gap: 40px;
    }

    .doctors-title {
        font-size: 2.2rem;
    }

    .doctor-name {
        font-size: 2rem;
    }

    .doctor-title {
        font-size: 1.2rem;
    }

    .doctor-description {
        font-size: 1rem;
    }

    .learn-more-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .angel-dental-logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .doctors-title {
        font-size: 1.9rem;
    }

    .doctor-name {
        font-size: 1.8rem;
    }

    .doctor-image-wrapper {
        max-width: 300px;
    }

    .learn-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .floating-element {
        display: none;
    }
}
