/* Footer styles */
.footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px 40px;
    gap: 383px;
    width: 100%;
    height: 121px;
    background: #062A4D;
    justify-content: space-between;
}

/* Doctor Name Styling */
.footer-left .doctor-name {
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
}

/* Center Section Styling */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.get-in-touch {
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #D0DF56;
    text-align: center;
}

/* Contact Info Layout */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.phone, .email {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFFFFF;
}

/* Icon size */
.icon {
    width: 14px;
    height: 14px;
}

/* Footer Icons Layout */
.footer-icons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

    .footer-icons img {
        width: 20px;
        height: 20px;
        border-radius: 50%;
    }

/* Media Queries for Responsive Design */
@media screen and (max-width: 1024px) {
    /* For tablets */
    .footer {
        flex-direction: column;
        padding: 20px;
        height: auto;
        gap: 20px;
        justify-content: center;
    }

    .footer-left,
    .footer-center,
    .footer-icons {
        width: 100%;
        text-align: center;
    }

        .footer-left .doctor-name {
            font-size: 18px;
        }

        .footer-center .get-in-touch {
            font-size: 14px;
        }

    .footer-icons {
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {
    /* For mobile phones */
    .footer {
        padding: 15px;
        gap: 15px;
        flex-direction: column;
        height: auto;
    }

    .footer-left .doctor-name {
        font-size: 16px;
    }

    .footer-center .get-in-touch {
        font-size: 14px;
    }

    .contact-info {
        flex-direction: row;
        gap: 10px;
    }

    .footer-icons {
        gap: 10px;
        margin-top: 10px;
    }

        .footer-icons img {
            width: 18px;
            height: 18px;
        }
}

@media screen and (max-width: 480px) {
    /* For very small screens like phones in portrait mode */
    .footer {
        padding: 10px;
        gap: 10px;
        flex-direction: column;
    }

    .footer-left .doctor-name {
        font-size: 14px;
    }

    .footer-center .get-in-touch {
        font-size: 12px;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
    }

    .footer-icons img {
        width: 16px;
        height: 16px;
    }
}
