:root{
  --blue:#163B5C;      /* Bleu Savoir */
  --green:#2BA84A;     /* Vert Innovation */
  --light:#F5F5F5;     /* Gris neutre */
  --ink:#1F2937;       /* Texte principal */
  --muted:#6B7280;     /* Texte secondaire */
  --radius:16px;
  --shadow:0 10px 30px rgba(22,59,92,.12);
}
*{
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    margin:0;
    font-family:system-ui,-apple-system,"Segoe UI",Roboto,Ubuntu,"Open Sans","Helvetica Neue",Arial,sans-serif;
    color:var(--ink);background:#fff;
}

/* START RIGHT HERE*/
.header{
    height: 75px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid gainsboro;
    position: fixed;
    width: 100%;
}
.logo{
    background-color: transparent;
    margin: 25px;
    margin-top: 35px;
    transition: 0.8s;
}
.logo:hover{
    transform: translateX(15px);
}
.logo .img{
    width: 120px;
    height: 25px;
    object-fit: cover;
}
.links{
    background-color: transparent;
    padding: 20px;
    margin: 15px;
    margin-bottom: 90px !important;
}
.links a{
    font-size: 1rem;
    text-decoration: none;
    margin: 10px;
    margin-bottom: 20px;
    padding: 12px;
    border: 2px solid transparent;
    color: var(--blue);
    border-radius: 15px;
    margin-top: 0;
    background-color: transparent;
    font-weight: bold;
    transition: 0.6s;
}
.links a:hover{
    border-bottom: 2px solid var(--blue);
    color: var(--blue);
    transform: scale(1.1);
}




/*START HERE*/
.services{
    font-size: 1rem;
    padding: 40px;
    line-height: 35px;
}
.services h2{
    text-align: center;
    font-size: 2rem;
}
section h1{
    text-align: center;
    font-size: 2rem;
}


/* COPIE HERE*/
section p{
    width: 50%;
}
.cases{
    margin-top: 30px !important;
    margin: 40px;
    height: 35%;
    background-color: var(--light);
    width: 40%;
    padding: 20px;
    border-radius: 20px;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0),
                inset -5px -5px 5px rgba(255, 255, 255, 0.5),
                5px 5px 5px rgba(0, 0, 0, 0.5),
                -5px -5px 5px rgba(255, 255, 255, 0.5);
}
.content{
    display: flex;
    flex-wrap: wrap;
}
.cases img{
    width: 100%;
    height: 60%;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0,0.1);
}
@media (max-width: 900px){
        .links a{
            margin: 2px;
            padding: 10px;
        }
        section p{
            width: 100%;
            text-align: justify;
        }
        .content{
            display: block;
        }
        .cases{
            width: 100%;
            height: 50vh !important;
            margin: 0;
            padding: 3px;
        }
        .cases img{
            width: 100%;
            height: 100%;
        }
}


/* END YOUR COPIE HERE*/

.ico{
    padding: 15px;
    border: 2px solid white;
    font-size: 1.5rem;
    border-radius: 15px;
    margin-bottom: 10px;
    left: 33%;
    background-color: blue;
    transition: 0.5s;
}
.ico:hover{
    background-color: #1F2937 !important;
}
/* Footer */
footer{background:#0f2336;color:#dbe4ee; display: flex;}
.foot{max-width:1200px;margin:0 auto;padding:28px 20px;grid-template-columns:1fr auto;gap:20px;align-items:center; text-align: center; justify-content: space-between;}
.foot a{color:#dbe4ee;text-decoration:none}
.social{display:flex;gap:12px}
.badge-whatsapp{align-items:center;background:var(--green);display: inline-block;color:#fff;padding:10px;border-radius:999px;text-decoration:none;font-weight:800; transition: 0.5s;}
.badge-whatsapp:hover{
    background-color: var(--light);
    border: 2px solid var(--green);
    color: var(--green);
}
