*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(23, 61, 110);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar ul{
display: flex;
list-style: none;
margin: 10px 0px;

}
.navbar ul li {
    font-family: century;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 6px;
    
}
.navbar ul li a{
    text-decoration: none;
    padding: 4px 10px;
    /* color: white; */
    transition: all .5s ease ;
    background-color: white;
    color: black;
    box-shadow: 0 0 20px white;
    border-radius: 30px;
    border: solid rgb(11, 10, 10); 
}
.navbar ul li a:hover {
    background-color: rgb(183, 70, 70);
    background-color: rgb(33, 126, 110);
    color: white;
    box-shadow: 0 0 10px white;
}

.main{
    display: flex;
    flex-direction: column;
 /*border: 1px solid white; */
    align-items: center;
    position: absolute;
    top: 30%;
    right: 10%;
}
.headings{
    font-family: century;
    font-size: 3rem;
    text-align: center;
    margin: 20px 0px;
    
}
.btn{
    padding: 10px 35px;
    background-color: rgb(183, 70, 70);
    color: white;
    box-shadow: 0 0 10px white;
    margin: 10px;
    transition: .6s ease;
    border-radius: 30px;
}
.btnn{
    padding: 10px 35px;
    background-color: rgb(11, 49, 59);
    color: white;
    box-shadow: 0 0 10px white;
    margin: 10px;
    transition: .6s ease;
    border-radius: 30px;
}
.btn:hover{
    cursor: pointer;
    background-color: white;
    color: black;
    box-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
    font-weight: bold ;
}

/*About Section*/
#about{
    /* background-image: url(Image/R.jfif); */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
    background-color: rgb(161, 190, 201);
     box-shadow: 0 0 20px black;
    margin-bottom: 10px;
    margin-top: 10px;
}
#pic{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}
#pic img{
    width: 575px;
    height:400px ;
    /* border-top-left-radius: 30px; */
    /* border-bottom-right-radius: 30px; */
    border-radius: 50px;
    border: solid white;
}

#intro{
    display: flex;
    flex-direction: column;
    text-align: justify;
    padding: 10px;
}
#intro h2{
    font-size: 2rem;
    margin-bottom: 20px;
}

/*services section*/
#services{
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: rgb(161, 190, 201);
     box-shadow: 0 0 20px black;
    margin-bottom: 10px;
    margin-top: 10px;
}
.row{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.box{
    display: flex;
    flex-direction: column;
    width: 350px;
    
    border:1px solid black ;
    margin: 10px;
    align-items: center;
    text-align: justify;
    padding: 10px;
    border-radius: 15px;
    /* background: linear-gradient(to top, rgb(255,45,45) 50%, white 50%); */
    background: linear-gradient(to top, rgb(38, 123, 67) 50%, white 50%);
    background-size: 100% 200%;
    transition: all .8s;
}
.box:hover{
    background-position: left bottom;
    color: white;
    border: none;
    box-shadow: 0 0 20px rgb(255,45,45);
}
.video{
    display: flex;
    justify-content: center;
}
.bouna{
    font-weight: bold;
    color: brown;
}
.text{
    text-align: justify;
    font-size: 18px;
    line-height: 1.5;
}

.scroll-section {
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
    text-align: center;
  }

  .scroll-content {
    display: inline-block;
    margin-right: 10px; /* Espacement entre les images */
  }

  .scroll-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc; /* Optionnel : ajoute une bordure autour des images */
  }
  .scroll-arrow {
    font-size: 24px;
    cursor: pointer;
    display: none;
  }

  .scroll-section:hover .scroll-arrow {
    display: block;
  }
  .scroll-section img{
    width: 360px;
    height: 240px;
    margin: 10px;
    border-radius: 30px;
    border: solid white;
  }

  /*portfolio section*/
  #image{
    /* background-color: rgb(161, 190, 201); */
    padding: 20px;
     box-shadow: 0 0 20px black;
    margin-bottom: 10px;
    margin-top: 10px;
    z-index: 999;
}
.paragraphe{
    font-size: 18px;
    line-height: 1.5;
}