*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
}

.titre-animation{
    color:#235d9b;

    animation:slideLeftRight 1.5s ease-out forwards;
}

@keyframes slideLeftRight{

    0%{
        opacity:0;
        transform:translateX(-100px) scale(0.8);
    }

    100%{
        opacity:1;
        transform:translateX(0) scale(1);
    }

}

.card i{
    display:block;
    text-align:center;
    font-size:70px;
    color:#235d9b;
    margin-bottom:15px;
}

p i{
    color:#235d9b;
    margin-right:10px;
    font-size:18px;
}

.counter__two{
    padding:80px 0;
}

.counter__two-bg{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

    padding:50px;
    border-radius:20px;
}

.counter__two-item{
    text-align:center;
    color:#fff;
}

.counter__two-item-icon{
    margin-bottom:15px;
}

.counter__two-item-icon i{
    font-size:50px;
    color:#ffffff;
}

.counter__two-item-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
    color:#235d9b;
}

.counter__two-item-content h6{
    font-size:16px;
    font-weight:500;
    color:#000000;
    line-height:1.5;
}

.counter__two-item a{
    text-decoration:none;
    color:inherit;
}

.counter__two-item:hover{
    transform:translateY(-8px);
    transition:0.3s;
}

@media(max-width:992px){

    .hero{
        flex-direction:column;
        text-align:center;
        gap:40px;
        padding:60px 8%;
    }

    .hero-text{
        max-width:100%;
    }

}

@media(max-width:992px){

    .counter__two-bg{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:20px;
    }

}

@media(max-width:768px){

    .counter__two-bg{
        grid-template-columns:1fr;
    }

}

.footer-map{
    width:100%; 
	border-radius:15px;
    overflow:hidden;
    margin-top:20px;
}

.footer-map iframe{
    display:block;
}

.footer-coordonnees{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;

    gap:10px;

    text-align:center;

    color:#000000;
    font-size:16px;
    line-height:1.8;

    margin:20px auto;
}

.footer-coordonnees span{
    white-space:nowrap;
}

.banner{
    position:relative;
    width:100%;
    height:400px;
    overflow:hidden;
}

.slider{
    position:relative;
    width:100%;
    height:650px;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.slide::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.slide-content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:white;
    max-width:650px;
    z-index:2;
	text-shadow:0 3px 10px rgba(0,0,0,.4);
}

.slide-content h1{
    font-size:55px;
    margin-bottom:20px;
}

.slide-content p{
    font-size:20px;
    margin-bottom:25px;
}

@media(max-width:768px){

    .slider{
        height:450px;
    }

    .slide-content{
        left:5%;
        right:5%;
    }

    .slide-content h1{
        font-size:32px;
    }

    .slide-content p{
        font-size:16px;
    }
}

.top-bar{
    background:#235d9b;
    color:#ffffff;
    padding:10px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    font-size:16px;
    font-weight:500;
    text-align:center;
}

@media(max-width:768px){

    .top-bar{
        flex-wrap:wrap;
        gap:8px;
        font-size:12px;
        padding:8px 15px;
    }

}

.top-bar span{
    white-space:nowrap;
}

body{
    background:#f5f8fc;
    color:#333;
    overflow-x:hidden;
}

header{
    background:#ffffff;
    padding:10px 8%;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:80px;
    width:auto;
}

nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    padding:0;
    margin:0;
}

/* Tablette */
@media (max-width:991px){

    nav ul{
        gap:15px;
    }

    nav ul li a{
        font-size:14px;
    }

}

/* Mobile */
@media (max-width:768px){

    .navbar{
        flex-direction:column;
        align-items:center;
    }

    nav ul{
        justify-content:center;
        gap:10px;
        margin-top:15px;
    }

    nav ul li a{
        font-size:13px;
        padding:8px 10px;
    }

}

nav a{
    color:#235d9b;
    text-decoration:none;
    font-weight:600;
    transition:all .3s ease;
}

nav a:hover{
    color:#41aee3;
}

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:50vh;
    padding:0 8%;
}

.hero-text{
    max-width:600px;
}

.hero-text h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text p{
    font-size:20px;
    line-height:1.8;
}

.btn1{
    display:inline-block;
    background:#41aee1;
    color:white;
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn{
    display:inline-block;
    background:#235d9b;
    color:white;
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#41aee1;
}

.hero-image img{
    max-width:650px;
    width:100%;
    border-radius:20px;
    transition:transform 0.6s ease;
}

.hero-image:hover img{
    transform:scale(1.08);
}

.offres{
    padding:80px 8%;
    text-align:center;
}

.services{
    padding:80px 8%;
    text-align:center;
}

.section-title{
    font-size:38px;
    color:#235d9b;
    margin-bottom:50px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.card h3{
    color:#235d9b;
    margin-bottom:15px;
}

.card p{
    color:#000000;
}

.cards1{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    margin-top:40px;
}

.card1{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card1:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.card1 img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.card1 h3{
    text-align:center;
    color:#235d9b;
    padding:20px 15px 10px;
    font-size:20px;
}

.card1 p{
    padding:0 20px 25px;
    text-align:center;
    line-height:1.6;
	color:#000000;
}

@media(max-width:992px){
    .cards1{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:768px){
    .cards1{
        grid-template-columns:1fr;
    }
}

.cards2{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
    margin-top:40px;
}

.card2{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card2:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.card2 img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.card2 h3{
    text-align:center;
    color:#235d9b;
    padding:20px 15px 10px;
    font-size:20px;
}

.card2 p{
    padding:0 20px 25px;
    text-align:center;
    line-height:1.6;
	color:#000000;
}

@media(max-width:992px){
    .cards2{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:768px){
    .cards2{
        grid-template-columns:1fr;
    }
}

.cta{
    background:#235d9b;
    color:white;
    text-align:center;
    padding:80px 8%;
}

.cta h2{
    font-size:40px;
    margin-bottom:20px;
}

.contact-section{
    padding:80px 8%;
    background:#f5f8fc;
}

.contact-intro{
    text-align:center;
    max-width:700px;
    margin:0 auto 40px;
}

.contact-form{
    max-width:1000px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    margin-bottom:8px;
    font-weight:600;
    color:#235d9b;
}

.form-group input,
.form-group select,
.form-group textarea{
    padding:15px;
    border:1px solid #d9d9d9;
    border-radius:10px;
    font-size:16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#235d9b;
}

.full-width{
    grid-column:1 / -1;
}

.btn-contact{
    background:#235d9b;
    color:#fff;
    border:none;
    padding:15px 30px;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.btn-contact:hover{
    background:#41aee1;
}

@media(max-width:768px){

    .contact-form{
        grid-template-columns:1fr;
    }

}

footer{
    background:#ffffff;
    color:#000000;
    text-align:center;
    padding:20px;
}

@media (max-width:768px){

    header{
        padding:5px 3%;
    }

    .logo img{
        height:40px;
    }

    nav a{
        font-size:13px;
    }

}

@media(max-width:900px){

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px 20px;
    }

    .logo img{
        height:60px;
    }

}

	/* SECTION MOBILE PAGE */

@media(max-width:768px){

    .top-bar{
        display:none;
    }

}	