*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    color: gray;
}
/******************************<< global >>************************************/
h2{
    color: #37517e;
    font-size: 40px;
}




/******************************<< header >>************************************/
header{
    padding: 20px;
    position: fixed;
    width: 100%;
    background-color: #37517e;
    z-index: 1;
}


/******************************<< main >>************************************/
main{
    height: auto;
    padding: 80px 10px;
    background-color: #37517e;
    display: flex;
    align-items: center;
}

main h1{
    padding-top: 90px;
    color: wheat;
}


main img{
    padding-top: 40px;
}

main a{
    padding-top: 40px;
}

/******************************<< section_1 >>************************************/
#section1{
    background-color: #f3f5fa;
    padding-top: 10px;
  

}


#section1 .container img{
    padding: 30px 10px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

#section1 .container img:hover{
    transform: scale(1.1);
    filter: grayscale(0);
    cursor: pointer;
}
/******************************<< section_2 >>************************************/
#section2{
    height: auto;
    padding: 60px 0px;
    align-items: center;
    display: flex;
}


/******************************<< section_3 >>************************************/
#section3{
    height: auto;
    padding: 50px;
    background-color: #f3f5fa;
    display: flex;
    align-items: center;
}




/******************************<< section_4 >>************************************/
#section4{
    height: auto;
    padding: 60px 0px;
    display: flex;
    align-items: center;
}
#section4 h3{
    font-size: 20px;
}
#section4 .pro .lg{
    display: flex;
    width: 100%;
    justify-content: space-between;
    height: 20px;
   
    
   


}

/************************ << progress >> **************************/

#section4 .container{
width: 100%;
margin: auto;
}
.progress{
width: 100%;
height: 20px;
position: relative;
background-color: #efeded;
margin: 10px;
}
        
.progress span{
 position: absolute;
left: 0;
 top: 0;
height: 100%;
background-color: indianred;
transition: width 0.3s linear;
}
        


 /******************************<< section_5 >>************************************/
 #section5{
height: auto;
padding: 60px 10px;
background-color: #f3f5fa;
padding-top: 30px;
 }


.row i{
    font-size: 35px;
}

#section5 .container button{
    color: #37517e;
    font-size: 20px;
    font-weight: bold;
    
}
#section5 .container .txt2{
    padding-bottom: 50px;
}
#section5 .container .row{
  
    background-color: white;
    padding: 50px 10px;

}
#section5 .container button:hover{
    color: #206cf0;

}

 /******************************<< section_6 >>************************************/
 #section6{
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url(../img/cta-bg.jpg) fixed center center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-between;

 }
 #section6 p {
    color: white;
 }

 #section6 h2 {
    color: white;
 }



 
 /******************************<< section_7 >>************************************/
 #section7{
    height: auto;
    padding: 50px 20px;
    text-align: center;
 }



#section7 .row img{
    height: 100%;
    filter: grayscale(100%);
    transition: 0.3s ease;
    
}



#section7 .row img:hover{
    filter: grayscale(0);
    cursor: pointer;
}
 
 /******************************<< section_8 >>************************************/
 #team{
    height: auto;
    padding: 50px;
    background-color: #efeded;
    padding: 50px;
 }




 .team .member {
    position: relative;
    /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
    padding: 30px;
    border-radius: 5px;
    background: white; 
    transition: 0.5s;
    justify-content: space-between;
   
 }

 .team img{
    border-radius: 150px;
 }


  
 /******************************<< section_8 >>************************************/
 #section8 {
    height: auto;
    padding: 80px 0px;
    background-color: #f3f5fa;
 }
 #section8 .member{
    display: flex;
    align-items: center;
    
 }
 


  /******************************<< section_9 >>************************************/

  #section9{
    height: auto;
    padding: 70px 0px;
  }

  #section9 .pricing{
    background-color: #f3f5fa;
    padding: 25px;
    height: 100%;

  }
  #section9 h3 {
    color: black;
  }
  #section9 h3 span{
    font-size: 50px;
    padding-top: 20px;
    
  }

  #section9 .pricing i{
    color: green;
  }
  #section9 .pricing .bx-x{
    color: gray;
  }


  #section9 .pricing .x{
    color: rgb(154, 153, 153);
  }
 

  /*8************************** << accordion >>****************************/
  .accordion {
    margin: auto;
    width: 80%;
    background-color: #ffffff; /* لون خلفية الـ accordion */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: none;
    border-radius: 4px;
   
    
}
.accordion .accordionBtn{
    background-color: #007BFF; /* لون أزرق للأزرار */
    color: white;
    border: 2px solid gray;
    width: 100%;
    text-align: start;

  
    border: none;
width: 100%;
text-align: start;
cursor: pointer;
padding: 15px;
font-size: 16px;
font-weight: bold;
transition: background-color 0.3s ease;
display: flex;
justify-content: space-between;
align-items: center;
}
.accordion .accordionBtn:hover {
background-color: #0056b3; /* لون أغمق عند التمرير على الأزرار */
}

.accordion .accordionBtn i{
    float: right;
    transition: transform 0.1s;
}

.accordion .accordion-body{
    height: 0;
    overflow: hidden;
    transition: height 1s;

    padding: 0 15px;
    padding: 0 15px;
background-color: #f8f9fa; /* لون خلفية للنص داخل الـ accordion */
color: #343a40; /* لون النص */


    
}


#section10{
    height: auto;
    padding: 60px 0px;
    background-color: #f3f5fa;
    display: flex;
    align-items: center;
  }



/*8********************************* section 11**********************/
#section11{
    height: auto;
    padding: 100px 0px;  
    align-items: center;
}

#section11 .contact{
    background-color: #f3f5fa;
    padding: 20px;
    margin: 10px;
    width: 100%;
    height: 70vh;
}
#section11 h2{
    font-size: 25px;
}

textarea{
    height: 25vh;
}
/*8********************************* section 12 *****************************/
#section12{
    height: auto;
    display: flex;
   padding: 60px 0px;
   margin: auto;
   background-color: #f3f5fa;


}


#section12 input{
    padding: 20px;
    border-radius: 40px;
    
}

#section12 a{
    padding: 15px 40px;
    border-radius: 30px;

   
}

#section12 .btt{
    display: flex;
    justify-content: center;
}

footer{
    padding: 50px;
   
}

.end_footer{
    background-color: #37517e;
    padding: 20px;
}

.end_footer .end{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.end_footer .end p{
    text-align: center;
    padding-top: 10px;
    color: white;
}

.end_footer .end p a{
    text-decoration: none;  
}


.end_footer .social-links a i{
    color: #47b2e4;
}


footer h2{
    font-size: 20px;
}



footer p{
    font-size: 15px;
}
footer p a{
    text-decoration: none;
    color: gray;
}
footer p a:hover{
    color: #0056b3;
    text-decoration: none;
}


@media(max-width:500px){
     /******************************<< section_8 >>************************************/
 #section8 {
    height: auto;
    /* padding: 80px; */
 }
 #section8 .member{
    display: block;
    text-align: center;
 }

  .team .member {
    position: relative;
    padding: 10px;
    border-radius: 5px;
    background: white; 
    transition: 0.5s;
    justify-content: space-between;
   
 }
 .team .member h2{
    padding-top: 30px;
 }
 #section1 .container img{
    padding: 30px;
    filter: grayscale(100%);
    transition: 0.3s ease;
    height:120px;
}
#section3 h2{
    font-size: 30px;
}
#section10 .accordionBtn{
    font-size: 15px;
}
#section10 p{
    font-size: 14px;
}
#section10 {
    padding: 50px 0px;
}

#section11 p{
    text-align: left;
}
h2{ 
    font-size: 25px;
}
footer{
    padding: 40px 10px;
}

}