@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    text-transform: capitalize;
}
html{
    font-size: 100%;
}

section {
    padding: 1.5rem 9%;
}

:root{
    --boxshadow: 0 0 12px 6px #dddddd;
    --colorgray: #777777;
    --colorgreen: #10a184;
    --color: #444444;
}

.btn{
    padding: 8px 15px;
    border: 2px solid #10a184;
    cursor: pointer;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 400;
    color: var(--color);
    transition: 0.5s;
}
.btn:hover{
    background-color: var(--colorgreen);
    color: white;
}
.btn:hover i{
    margin-left: 15px;
    color: var(--colorgreen);
    background-color: white;
}
.btn i{
    margin-left: 5px;
    padding: 5px 8px;
    border-radius: 5px;
    color: white;
    background-color: var(--colorgreen);
    transition: 0.5s;
}

.heading{
    text-align: center;
    font-size: 45px;
    text-shadow: 4px 4px 0 #cfcfcf;
}
.heading h3{
    color: #444444;
}
.heading span{
    color: #10a184;
}
/* header section css start here  */
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 9%;
    display: flex;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    transition: 0.5s;
    box-shadow: var(--boxshadow);
}
.logo{
    font-size: 25px;
    color: var(--color);
}
.logo i{
    color: var(--colorgreen);
    margin-right: 5px;
}
.navbar{
    display: flex;
}
.navbar li a{
    display: block;
    margin: 0 1rem;
    font-size: 16px;
    color: var(--colorgray);
    transition: 0.5s;
}
.navbar li a:hover{
    color: var(--colorgreen);
}
/* header section css end here  */

/* home section css start here  */
.home{
    display: flex;
    align-items: center;
    padding-top: 5rem;
    gap: 1.5rem;
}
.home .img{
    flex: 1 1 45rem;
}
.home .img img{
    width: 110%;
}
.home .home-content{
    flex: 1 1 45rem;
    padding: 1rem;
}
.home .home-content h3{
    font-size: 45px;
    font-weight: 900;
    line-height: 1.8;
    color: var(--color);
    text-shadow: 3px 2px 0 #cecece;
}
.home .home-content p{
    color: var(--colorgray);
    font-size: 17px;
    margin: 1rem 0;
}

/* home section css end here  */

.container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
    gap: 1rem;
}
.container .box{
    text-align: center;
    border: 2px solid #10a184;
    box-shadow: 0 0 6px 2px #7bf0d8;
    padding: 2.5rem;
    border-radius: 5px;
}
.container .box i{
    font-size: 45px;
    color: #10a184;
}
.container .box h3{
    font-size: 45px;
    font-weight: 700;
    color: #444444;
    margin: 15px 0;
    text-shadow: 3px 2px 0 #cecece;
}
.container .box p{
    color: #444444;
    font-size: 17px;
}


/* service section start here  */
.service-content{
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}
.service{
    padding: 1.5rem;
    border: 1px solid #10a184;
    border-radius: 5px;
}
.service .asdfsadf{
    font-size: 4.5rem;
    color: #10a184;
}
.service h3{
    font-size: 25px;
    color: #444444;
    margin-top: 15px;
}
.service p{
    font-size: 14px;
    line-height: 1.8;
    margin: 15px 0;
}

.about .img{
    flex: 1 1 45rem;
    width: 100%;
}

.about{
    display: flex;
    align-items: center;
}
.about-content{
    flex: 1 1 45rem;
}
.about-content h3{
    font-size: 45px;
    line-height: 1.8;
    color: #444444;
    font-weight: 700;
    text-shadow: 3px 2px 0 #cecece;
}
.about-content p{
    color: #777777;
    font-size: 14px;
    line-height: 1.8;
    margin: 15px 0;
}
/* service section end here  */

/* doctor section css start here  */
.our-doctors{
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}
.doctor{
    text-align: center;
    border: 2px solid #10a184;
    padding: 2rem 0;
    border-radius: 5px;
    box-shadow:  2px 2px 0 #85ebd6;
}
.doctor img{
    height: 200px;
    border: 2px solid #10a184;
    border-radius: 5px;
}
.doctor h3{
    font-size: 25px;
    color: #444444;
    margin-top: .5rem 0;
}
.doctor p{
    color: #10a184;
    font-size: 16px;
    margin-bottom: .5rem;
}
.doctor .details i{
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    color: #10a184;
    border: 2px solid #10a184;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 2px 2px 0 #8fecda;
    margin-top: 1rem;
    transition: 0.5s;
}
.doctor .details i:hover{
    background-color: #10a184;
    color: white;
}
/* doctor section css end here  */

/* book section css start here  */
.booking{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.booking .book-img{
    width: 70%;
}
form{
    padding: 1rem;
    border: 2px solid #10a184;
    text-align: center;
    border-radius: 5px;
}
form h3{
    font-size: 25px;
    color: #444444;
}
form input{
    width: 90%;
    margin-top: 1.5rem;
    padding: .7rem;
    font-size: 16px;
    border: 2px solid #10a184;
    border-radius: 5px;
    outline: #10a184;
}
form .btn{
    width: 95%;
    margin-top: 1.5rem;

}
/* book section css end here  */

/* customer review section css start here  */
.customer-review{
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}
.review{
    text-align: center;
    border: 2px solid #10a184;
    border-radius: 5px;
}
.review img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: .5rem solid white;
}
.customer{
    background-color: #10a184;
    padding: 2rem;
    border-radius:  0 0 15rem 15rem;
    color: white;
}
.customer h3{
    font-size: 25px;
    padding: 10px 0;
}
.review p{
    padding: 2rem;
    line-height: 1.8;
    font-size: 16px;
}
/* customer review section css end here  */

/* blog section css start here  */
.our-blogs{
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}
.blog{
    border: 2px solid #10a184;
    border-radius: 5px;
    padding: 1rem;
}
.flex{
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
}
.flex a{
    color: #10a184;
}
.flex i{
    margin-right: .5rem;
}
.blog .image{
    height: 12rem;
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
}
.blog .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.blog:hover img{
    transform: scale(1.2);
}
.blog h3{
    font-size: 30px;
    color: #444444;
}
.blog p{
    font-size: 15px;
    color: #777777;
    margin: 1rem 0;
}
/* blog section css end here  */

/* footer section start here  */
.footer-section{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}
.footer h3{
    font-size: 25px;
    color: #444444;
}
.footer a{
    display: block;
    margin-top: 1.5rem;
    color: gray;
    font-size: 15px;
}
.footer i{
    color: #10a184;
    margin-right: 10px;
    transition: .3s;
}
.footer a:hover i{
    padding-right: 1rem;
}
.foot{
    height: 2px;
    background-color: #dadadaa1;
    margin: 1.5rem 0;
}
.credit p{
    font-size: 18px;
    font-weight: 400;
    color: #9c9c9c;
    text-align: center;
}
.credit span{
    color: #10a184;
}
/* footer section end here  */


.toggle{
    display: none;
}


/* mobile version  */
@media screen and (max-width: 1024px) {
    .heading{
        font-size: 30px;
    }
    .toggle{
        display: block;
    }
    .toggle i{
        cursor: pointer;
        font-size: 25px;
        color: #444444;
        padding: 5px 8px;
        border-radius: 5px;
        border: 1px  solid #10a184;
    }
    
    .navbar {
        background-color: white;
        position: absolute;
        display: block;
        width: 100%;
        top: 99%;
        left: 100%;
        right: 0;
        transition: .5s;
    }.active{
        left: 0;
        transition: .5s;
    }
    .navbar li a{
        padding: 10px 0;
        margin: 15px 20px;
        border-left: .2rem solid #10a184;
        padding-left: .5rem;
        border-top: 1px solid #10a184;
        border-right: 1px solid #10a184;
        border-bottom: 1px solid #10a184;
    }
    .home{
        padding-top: 10rem;
        display: flex;
        flex-direction: column;
    }
    .home .img{
        flex: 1 1 20rem;
    }
    .home .home-content{
        flex: 1 1 20rem;
        padding: 0;
    }
    .home .home-content h3 {
        font-size: 30px;
    }
    .container{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .container .box{
        padding: 1.5rem;
    }
    .container .box h3 {
        font-size: 25px;
    }
    .container .box p {
        color: #444444;
        font-size: 10px;
    }
    .service-content{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .about{
        display: flex;
        flex-direction: column;
    }
    .about .img{
        flex: 1 1 20rem;
        width: 100%;
    }
    .about-content{
        flex: 1 1 20rem;
    }
    .about-content h3 {
        font-size: 30px;
    }
    .our-doctors{
        display: flex;
        flex-direction: column;
    }
    .booking{
        display: flex;
        flex-direction: column;
    }
    .booking .book-img{
        width: 100%;
    }

    .customer-review{
        display: flex;
        flex-direction: column;
    }
    .our-blogs{
        display: flex;
        flex-direction: column;
    }
    .blog h3 {
        font-size: 25px;
    }
    .footer-section{
        display: flex;
        flex-direction: column;
    }
    .review p {
        font-size: 14px;
    }
}