/* 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&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* colors and fonts */
:root {
    --color-01: #444444;
    --color-02: #ffffff;
    --color-03: #1977cc;
    --color-04: #2c4964;
    --color-05: #ffc107;
    --color-06: #f1f7fc;
    --color-07: #000000;
    --Roboto: "Roboto", sans-serif;
    --Poppins: "Poppins", sans-serif;
    --Raleway: "Raleway", sans-serif;
}
/* For all animations and transitions to execute smoothly with  effects */
*{
    transition: all 0.5s ease;
}

/* scroll behavior smooth */
html, body{
    scroll-behavior: smooth;
    /* scrollbar-width: none; */
}
/* header */
.top-bar {
    background-color: var(--color-03);
    z-index: 100;
}

.top-social-icons i {
    margin: 8px;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-04);
    
}

.top-social-icons i:hover {
    color: var(--color-06);
    cursor: pointer;
}

.top-contacts {
    font-weight: 400;
    color: var(--color-02);
    font-size: 14px;
    font-family: var(--Roboto);

}

/* navbar */
.navbar {
    background-color: var(--color-02);
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 100;
}

.navbar-brand {
    font-family: var(--Poppins);
    color: var(--color-04);
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;

}

.navbar-nav {
    gap: 20px;
}

.nav-link {
    color: var(--color-04);
    font-family: var(--Raleway);
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;

}

.nav-link:hover {
    border-bottom: 2px solid var(--color-03);
    color: var(--color-03);

}

.nav-button {
    font-weight: 400;
    font-family: var(--Roboto);
    color: var(--color-02);
    font-size: 14px;
    line-height: 21px;
    background-color: var(--color-03);
    border-radius: 40px;

}

.nav-button:hover {
    color: var(--color-02);
    border: none;
    background-color: #2c90e8;
}

/* hero  */
#hero {
    background-image: url('/IMAGES/hero-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 90vh;
}

.hero-content-heading h1 {
    font-family: var(--Poppins);
    font-weight: 700;
    color: var(--color-04);
    font-size: 48px;
    line-height: 58px;
}

.hero-content-heading p {
    font-family: var(--Roboto);
    font-weight: 400;
    color: var(--color-01);
    font-size: 24px;
    line-height: 36px;
}

.hero-f1 {
    background-color: var(--color-03);
    border-radius: 5px;
}

.hero-f1 h2 {
    font-family: var(--Poppins);
    font-weight: 700;
    color: var(--color-02);
    font-size: 34px;
}

.hero-f1 p {
    font-weight: 400;
    font-family: var(--Roboto);
    font-size: 16px;
    line-height: 24px;
    color: var(--color-02);
}

.hero-f1-link {
    text-decoration: none;
    font-style: normal;
    font-weight: 400;
    font-family: var(--Roboto);
    font-size: 16px;
    line-height: 24px;
    color: var(--color-02);
    background-color: #cccdce57;
    border-radius: 40px;
}

.hero-f1-link:hover {
    color: var(--color-03);
    background-color: var(--color-06);

}
.hero-f2{
    background-color: var(--color-06);
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}
.hero-f2 i{
    font-weight: 400;
    font-size: 40px;
    line-height: 60px;
    color: rgb(25, 119, 204);
    display: inline-block;
}
.hero-f2 h6{
    font-style: normal;
    font-weight: 700;
    color: var(--color-04);
    font-size: 20px;
    line-height: 24px;
    font-family: var(--Poppins);
}
.hero-f2 p{
    font-weight: 400;
    color: srgb (0.266667 0.266667 0.266667 / 0.7);
    font-size: 15px;
    font-family: var(--Roboto);
}

/* about */
#about{
    padding: 80px 0px;
    background-color: var(--color-02);
}
.about-info h3{
    font-family: var(--Poppins);
    font-weight: 700;
    color: var(--color-04);
    font-size: 32px;
    line-height: 38px;
}
.about-info p{
    font-weight: 400;
    color: var(--color-01);
    font-size: 16px;
    line-height: 24px;
    font-family: var(--Roboto);
}
.about-info-f1 i{
    font-weight: 900;
    color: var(--color-03);
    font-size: 48px;
    line-height: 48px;
}
.about-info-f1 div h5{
    font-family: var(--Poppins);
    font-weight: 700;
    color: var(--color-04);
    font-size: 18px;
    line-height: 22px;

}
.about-info-f1 div p{
    font-weight: 400;
    color: var(--color-01);
    font-size: 15px;
    line-height: 23px;
}

/* insight */
#insights{
    background-color:#F1F7FC ;
    padding: 80px 0px;
}
.insights-cards{
    position: relative;
}
.insight-cards-text h3{
    font-weight: 700;
    color: var(--color-04);
    font-size: 32px;
    font-family: var(--Roboto);
}
.insight-cards-text{
    background-color: var(--color-02);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 5px;
}
.insight-cards-text p{
    font-size: 16px;
    line-height: 24px;
    color: var(--color-01);
    font-family: var(--Poppins);
}

.insight-cards-icon i{
    display: inline-block;
    color: var(--color-02);
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; 
    height: 50px;
    width: 50px;
    background-color: var(--color-03);
    position: absolute;
    top: -30px;
    left: 40%;
    border-radius: 100%;
}

 /* Services */
#section{
    padding: 40px 0px;
    background-color: var(--color-02);
}
.service-heading h2{
    font-family: var(--Poppins);
    font-weight: 500;
    color: var(--color-04);
    font-size: 32px;
    line-height: 38px;
    

}
.service-heading p{
    font-weight: 400;
    color: var(--color-01);
    font-size: 16px;
    line-height: 24px;
}
.services-card1 {
    border: 1px solid #9daab550;
}
.services-card1-icon i{
    font-size: 30px;
    color: var(--color-06);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; 
    height: 60px;
    width: 60px;
    background-color: var(--color-03);
    text-align: center;
    border-radius: 3px;
    box-shadow: -5px -6px 0px 3px rgba(0, 0, 0, 0.24);

}
.services-card1-icon{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.services-card1:hover{
    cursor: pointer;
    background-color: var(--color-03);
    color: var(--color-06);
    .services-card1-icon i{
        background-color: var(--color-02);
        color: #2c90e8;
    }
}

/* appointment */
#appointment{
    padding: 40px 0px;
}
.btn-forms button{
    border-radius: 30px;
    border: none !important;
    padding: 10px 30px;
}

/* doctors */
.doctor-card{
    color: var(--color-06);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.doctor-card:hover{
    transform: translateY(-5px);
}
.doc-img{
    width: 200px;
    height: 200px;
}
.doc-img img{
    width: 100%;
    border-radius: 100%;

}
.doc-info h2{
    font-family: var(--Poppins);
    color: var(--color-04);
    font-size: 20px;
    font-weight: 700;
}
.doc-info h3{
    font-family: var(--Roboto);
    font-size: 14px;
    color: var(--color-01);
    font-weight: 500;

}
.doc-info p{
    font-weight: 400;
    color: var(--color-01);
    font-size: 14px;
    
}
.doc-info div{
    display: flex;
    gap: 10px;
}
.doc-info div i{
    display: inline-block;
    height: 40px;
    width: 40px;
    color: var(--color-04);
    background-color: #44444423;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.doc-info div i:hover{
    color: var(--color-06);
    background-color: var(--color-03);
}

/* faqs */
#faqs{
    padding: 80px 0px;
    background-color: #F1F7FC;
}
.accordion-button{
    font-family: var(--Poppins) !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 24px !important;
    color: var(--color-04) !important;
}
.accordion-button:hover{
    color: #1977cc !important;
}
.accordion-body{
    font-size: 16px !important;
}
div.accordion-item{
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--Roboto);
    background-color: #1977cc;
}
.accordion-button:not(.collapsed){
    background-color: #1977cc !important;
    border: none !important;
    color: #fff !important;
}

/* testimonials */
#testimonials{
    padding: 80px 0px;
    background-color: var(--color-02);
}
.test-contents h4{
    font-family: var(--Poppins);
    font-weight: 700;
    color: var(--color-04);
    font-size: 32px;
    line-height: 38px;
}
.test-contents p{
    font-weight: 400;
    color: var(--color-01);
    font-size: 16px;
    line-height: 24px;
}
.test-cards{
    background-color: var(--color-06);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.person-testimonail p{
    font-family: var(--Roboto);
    font-style: italic;
    font-weight: 400;
    color: var(--color-01);
    font-size: 16px;
    line-height: 24px;
}
.person-testimonail p i{
    font-size: 30px;
}
.test-person-info span{
    color: gold;
}
.test-person-info p{
    font-family: var(--Poppins);
    font-weight: 500;
    color: #44444480;
    font-size: 14px;
    line-height: 17px;

}
.test-person-info h2{
    font-weight: 700;
    color: var(--color-04);
    font-family: var(--Poppins);
    font-size: 18px;
    line-height: 22px;
}
.test-persom-img{
    width: 70px;
    height: 70px;
}
.test-persom-img img{
    width: 100%;
    border-radius: 100%;
}