/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 65px;
}

.doctor img {
    height: 65px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e91e63;
    border-bottom: 2px solid #e91e63;
    transition: color 0.3s;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}



.mhed {
    background-color: #212121;
    color: #ffffff;
    padding: 15px;
}

footer {
    background: url("./img/footerbg.png") center/cover no-repeat;
    width: 100%;
    padding-top: 150px;


}

.googlemap {
    width: 100%;
    background-color: #9FBE34;

}

@media only screen and (max-width: 900px) {
   

    header nav {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    header nav.active {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    header {
        justify-content: space-between;
    }
}

@media only screen and (max-width: 600px) {

   

    .doctor {
        display: none;
    }

    

}

@media only screen and (max-width: 375px) {
    

   

    .logo img {
        height: 45px;
    }

    

}