:root{
    --text:black;
    --card:whitesmoke;
    --bg:white;
}

body{
    box-sizing: border-box;
}

.header{
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff;
}
.header-content{
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 5px;
}
.header-btn{
    position: absolute;
    right: 10px;
    top: 25px;
    background: blue;
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
}

.accueil{
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}

.hero{
    background: #fff;
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.3);
}



.photo-container{
    display: inline-block;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 3px;
    margin-left: 5px;
}

.circle{
    position: absolute;
    top: -4px;
    left: 4px;
    bottom: -3px;
    right: -6px;
    width: 210px;
    height: 210px;
    border: 2px dashed blue;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.photo-container img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid blue;
    image-rendering: auto;
}

.nom{
    text-align: center;
    color: blue;
    font-weight: bold;
    font-size: 20px;
}

@keyframes rotate {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.footer{
    background: var(--card);
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 60px;
    padding: 5px;
    box-sizing: border-box;
    display: none;
}

@media(max-width:986px){
    .footer{
        display: block;
    }
}

.link{
    text-align: center;
    padding: 15px;
}

.link a{
    background-color: blue;
    color: #fff;
    font-size: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 5px;
    justify-content: space-between;
}

.link a:hover{
    color: #fff;
}


.menu{
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.menu a{
    color: blue ;
    text-decoration: none;
    text-align: center;
}

h3{
    color: blue;
}

.apropos{
    padding: 20px;
}

.milestones{
    background: #fff;
    width: 100%; 
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    padding: 30px; 
   
}

.bold{
    text-align: center;
    width: 95%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.3);
    padding: 30px; 
    justify-self: center;
    background: #f6f9fc;
    animation: glow 2s infinite ease-in-out;
}

@keyframes glow{
    0%{
        box-shadow: 0 0 5px;
        rgba:(13,110,253,0.3);
    }
    50%{
        box-shadow: 0 0 25px;
        rgba:(13,110,253,0.8);
    }
    100%{
        box-shadow: 0 0 5px;
        rgba:(13,110,253,0.3);
    }
}

.bold a{
    text-decoration: none;
}

.bold i{
    color: #1976f2;
    font-size: 30px;
}

.mailto{
    background-color: #fff;
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    padding: 30px;    
    margin-top: 17px;
}

.bold p{
    font-weight: bold;
    font-size: 20px;
}

.call{
    background: #fff;
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.3);
    padding: 30px;
    animation: glow 2s infinite ease-in-out; 
}

@keyframes glow{
    0%{
        box-shadow: 0 0 5px;
        rgba:(13,110,253,0.3);
    }
    50%{
        box-shadow: 0 0 25px;
        rgba:(13,110,253,0.8);
    }
    100%{
        box-shadow: 0 0 5px;
        rgba:(13,110,253,0.3);
    }
}

.call i{
    background-color: lightblue;
    color: blue;
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

div span a{
    text-decoration: none;
    color: #1976f2;
}

.sidebar-btn{
    position: absolute;
    right: 10px;
    top: 30px;
    background: blue;
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
}

.sidebar{
    display: none;
    position: absolute;
    width: 220px;
    background-color: blue;
    color: #fff;
    height: 100vh;
    z-index: 9999;
    bottom: 0;
    transition: 2s;
    top: 0;
}

.show{
    display: block;
    top: 0;
}

.sidebar li a{
    text-decoration: none;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    
}

.js{
    text-align: center;
}

.js h3{
    color: #fff;
}

.icn{
     text-align: center;
    padding: 15px;
}

.icn a{
    background-color: var(--text);
    color: #fff;
    font-size: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    padding: 10px;
}

ul a{
    text-decoration: none;
    color: #fff;
}

ul a:hover{
    color: #fff;
}

span a:hover{
    color: #1976f2;
}

.sidebar img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid black;
}

.formulaire{
    text-align: center;
}

.contact-section{
    margin-bottom: 80px;
}

.send-message-btn{
    padding: 10px;
    border-radius: 50px;
    background-color: #1976f2;
    border: none;
    color: #fff;
}

.form-contact input{
    padding: 15px;
}

.text{
    background: #f6f9fc;
    padding: 30px;
}

.parcours{
    padding: 15px;
}


.graphique{
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f9fc;
}

.skills{
    width: 80%;
    margin: 40px auto;
}

.skill{
    margin-bottom: 30px;
}

.skill-header{
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 8px;
}

.bar{
    width: 100%;
    background: #e6ecf5;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.pro{
    height: 100px;
    background: #1976f2;
    border-radius: 5px;
}

.pro{
    animation: load 1.5s ease-in-out;
}

@keyframes load{
    from{
        width: 0;
    }
}

.album{
    background-color: #fff;
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    padding: 30px;    
    overflow: hidden;
}


.img-galerie{
    width: 100%;
    height: 200px;
    margin-bottom: 5px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
    
}

.img-galerie:hover{
    transform: scale(1.1);
}

@media(max-width:986px){
    .album{
        padding: 15px;
    }
}

.btn-more{
    text-decoration: none;
    background-color: #1976f2;
    color: #fff;
    padding: 10px;
    margin: 5px;
    border-radius: 20px;
}

.btn-more:hover{
    color: #fff;
}

.details-galerie{
    padding: 20px;
    background-color: #fff;
    margin: 0;
    overflow: hidden;
}