/*=============================================Google Fonts =====================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{

/*=========================================== Main theme Colors =================================================*/

--light-blue-color:#16c5ff;
--black:#444;
    --light-color:#777;
    --box-shadow:.5rem .5rem 0 rgba(22, 160, 133, .2);
    --text-shadow:.4rem .4rem 0 rgba(0, 0, 0, .2);
    --border:.2rem solid var(--light-blue-color);

/*=========================================== Background Colors ================================================*/
--body-bg-color: #fefefe;
--card-bg-color: #fff;
--modal-bg-color: #fff;
--bg-transparent-color: rgba(0,0,0,0.1);
--transparent-color-01: rgba(0,0,0,0.1);
--transparent-color-02: rgba(106,89,209,0.1);
--line-color: #d7d7d7;

/*============================================== Color Filter ==================================================*/
--color-filter: invert(1);

/*============================================== Box Shadow ====================================================*/
--box-shadow: 0px 0px 20px rgb( 0 0 0 / 10%);

/*============================================== Font Size ======================================================*/
--small-fonts-size: 0.9em;
--normal-font-size: 1em;

/*============================================ Scroll Bar Colors ===============================================*/
--scroll-bar-color: #c5cadf;
--scroll-thumb-color: #70768a;
--scrool-thumb-hover-color: #454f6b;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    color: var(--first-color);
    background: var(--body-bg-color);
    margin: 2rem 0 0 0;
    transition:  .5s ease;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

.heading{
    text-align: center;
    padding-bottom: 2rem;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    color:var(--black);
    font-size: 5rem;
    letter-spacing: .4rem;
}

.heading span{
    text-transform: uppercase;
    color:var(--light-blue-color);
}



/*========================================= Common style for all sections =======================================*/
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.section{
    position: relative;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 3rem;
}

.sub-section{
    position: relative;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    padding: 6rem 0;

}

.container{
    position: relative;
    flex-direction: column;
}

/*============================================ services section ================================================= */
.services .container .content{
    width: 95%;
}

.services-description h3{
    font-size: 2em;
    margin-bottom: 50px;
}

.service-list{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(255px,1fr));
    max-width: 100%;
    margin: 0 auto;
    gap: 20px;
}

.service-card{
    background: var(--card-bg-color);
    border-bottom: 3px solid var(--light-blue-color);
    padding: 50px;
    border-radius: 6px;
    box-shadow: var(--box-shadow);
}

.service-card > i{
    color: var(--light-blue-color);
    font-size: 3em;
    margin-bottom: 30px;
}

.service-card h3{
    font-size: 1.5em;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 20px;
}

.service-card .learn-more-btn{
    color: var(--third-color);
    cursor: pointer;
    transition: .3s ease;

}
 
.service-card .learn-more-btn i{
    transition: .3s ease;
}

.service-card:hover .learn-more-btn i{
    transform: translateX(10px);
}

.service-modal{
    z-index: 999999;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: var(--bg-transparent-color);
    backdrop-filter: blur(10px);
    visibility: hidden;
    opacity: 0;
    transition: .3s ease;
}

.service-modal.active{
    visibility: visible;
    opacity: 1;
}

.service-modal-body{
    position: relative;
    background: var(--modal-bg-color);
    max-width: 600px;
    height:calc(100vh - 20px);
    display: flex;
    flex-direction: column;
    overflow: auto;
    margin: 20px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transform: translateY(-50px);
    transition: .5s ease;
}


.service-modal.active .service-modal-body{
    transform: translateY(0px);
}

.service-modal-body .modal-close-btn{
    position: relative;
    top: 0;
    right: 0px;
    margin: 20px;
    cursor: pointer;
}

.service-modal-body h3{
    font-size: 2em;
}

.service-modal-body h4{
    font-size: 1.3em;
    font-weight: 600;
    margin: 15px 0 10px;
}

.service-modal-body ul li{
    margin-top: 15px;
}

.service-modal-body ul li i{
    color: var(--light-blue-color);
}

.medicine ul li{
    list-style-type: disc;
    margin-top: 0px;
}

/*=============================================== media querry max-width 1070px================================== */

@media screen and (max-width: 1070px) {

/*==========================================================Media querry max-width 730px==================================================== */
@media screen and (max-width: 730px){
    body{
        margin: 5rem 0 0 0;
    }
    
.section-title-01{
    font-size: 3em;
}

.section-title-02{
    font-size: 2em;
    transform: rotateY(-4rem);
}
.heading{
    font-size: 2.8rem;
}

#services{
    padding: 15px 7px;
}
}
}