/*====================================
1. VARIABLES CSS
2. RESET
3. BODY
4. CONTAINER
5. HEADER
6. NAVBAR
7. BUTTONS
8. HERO
9. ABOUT
10. SERVICES
11. STATS
12. PROJECTS
13. CTA
14. CONTACT
15. FOOTER
16. ANIMATIONS
17. RESPONSIVE
====================================*/

/*====================================================
                GOOGLE FONT
=====================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*====================================================
                VARIABLES
=====================================================*/

:root{

    --primary:#0057D9;
    --secondary:#00A651;
    --dark:#0F172A;
    --dark-light:#1E293B;
    --light:#F8FAFC;
    --white:#FFFFFF;
    --gray:#64748B;
    --border:#E5E7EB;

    --shadow:0 15px 40px rgba(0,0,0,.12);

    --radius:12px;

    --transition:.35s ease;

    --container:1200px;

}

/*====================================================
                RESET
=====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--dark);

    line-height:1.7;

    overflow-x:hidden;

}


.entete{
    padding: 0;
    margin: 0;
    width: 100%;
   
}
.entete img{
   
    width: 100%;
    height: 170px;
}

img{

    width:190px;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

section{

    padding:110px 0;

}

.container{

    width:90%;

    max-width:var(--container);

    margin:auto;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--secondary);

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;

}

.section-title h2{

    margin-top:10px;

    font-size:42px;

    font-weight:700;

    color:var(--dark);

}

/*====================================================
                    HEADER
=====================================================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:.4s;

    padding:18px 0;

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

header.scrolled{

    background:#ffffff;

    box-shadow:0 5px 25px rgba(0,0,0,.08);

}

.logo img{

    height:70px;

    width:auto;

}

/*====================================================
                NAVIGATION
=====================================================*/

nav ul{

    display:flex;

    gap:35px;

}

nav ul li a{

    color:white;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

header.scrolled nav ul li a{

    color:var(--dark);

}

nav ul li a:hover{

    color:var(--secondary);

}

/*====================================================
                    BUTTONS
=====================================================*/

.btn-primary{

    background:var(--primary);

    color:white;

    padding:14px 30px;

    border-radius:50px;

    transition:.3s;

    display:inline-block;

    font-weight:600;

}

.btn-primary:hover{

    background:var(--secondary);

    transform:translateY(-4px);

}

.btn-secondary{

    background:white;

    color:var(--primary);

    padding:14px 30px;

    border-radius:50px;

    margin-left:15px;

    display:inline-block;

    font-weight:600;

    transition:.3s;

}

.btn-secondary:hover{

    background:var(--primary);

    color:white;

}

/*====================================================
                    HERO
=====================================================*/

#hero{

    position:relative;

    height:100vh;

    background:url("../images/hero.jpg") center center/cover;

    display:flex;

    align-items:center;
    padding: 20px;

}

#hero .overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:linear-gradient(
        rgba(3,33,77,.82),
        rgba(3,33,77,.75)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    color:white;

    max-width:720px;
    height: auto;
  

}



#menu {
    display: flex;
}

@media (min-width: 992px) {
    #menu {
        display: none;
    }
}
.hero-content .subtitle{

    display:inline-block;


    margin-bottom:5px;

    background:rgba(255,255,255,.15);

    padding:10px 10px;

    border-radius:50px;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;
    ma

}

.hero-content h1{

    font-size:62px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:800;

}

.hero-content p{

    font-size:18px;

    margin-bottom:40px;

    color:#f2f2f2;

}

.hero-buttons{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

}

/*====================================================
            HERO SCROLL INDICATOR
=====================================================*/

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    z-index:5;

    color:white;

    animation:bounce 2s infinite;

}

.scroll-down i{

    font-size:28px;

}

/*====================================================
                ANIMATION
=====================================================*/

@keyframes bounce{

    0%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,15px);

    }

    100%{

        transform:translate(-50%,0);

    }

}

/*====================================================
            GLOBAL CARD STYLE
=====================================================*/

.card{

    background:white;

    border-radius:15px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

}

/*====================================================
            TEXT UTILITIES
=====================================================*/

.text-center{

    text-align:center;

}

.mt-5{

    margin-top:50px;

}

.mb-5{

    margin-bottom:50px;

}


/*====================================================
                    ABOUT
====================================================*/

.entete{

}
#about{
    background:#fff;
}

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    height:100%;
    width: 100%;
    margin:0;
    padding: 0;
}

.about-text p{
    color:var(--gray);
    margin-bottom:20px;
    text-align:justify;
}

.about-text ul{
    margin-top:30px;
}

.about-text ul li{
    margin-bottom:15px;
    font-weight:500;
    color:var(--dark);
    display:flex;
    align-items:center;
    gap:10px;
}

/*====================================================
                SERVICES
====================================================*/

#services{
    background:#f8fafc;
    width: 100%;
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(1,1fr);

    gap:35px;
    width: 100%;

}

.service-card{

    background:#fff;

    padding:45px 35px;

    border-radius:18px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border-bottom:5px solid transparent;


}

.service-card:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.service-card i{

    width:90px;

    height:90px;

    line-height:90px;

    border-radius:50%;

    background:rgba(0,87,217,.08);

    color:var(--primary);

    font-size:38px;

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:20px;

    font-size:24px;

    color:var(--dark);

}

.service-card p{

    color:var(--gray);

    font-size:15px;

}

/*====================================================
                    STATS
====================================================*/

#stats{

    background:linear-gradient(135deg,#003f88,#0057D9);

    color:white;

}

#stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat{

    text-align:center;

}

.stat h2{

    font-size:60px;

    font-weight:800;

}

.stat p{

    font-size:18px;

    opacity:.9;

}

/*====================================================
                PROJECTS
====================================================*/

#projects{

    background:white;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.projects-grid img{

    border-radius:15px;

    cursor:pointer;

    transition:.4s;

    height:280px;

    object-fit:cover;

}

.projects-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

/*====================================================
                CTA
====================================================*/

#cta{

    background:linear-gradient(rgba(0,87,217,.90),
               rgba(0,87,217,.90)),
               url("../images/cta.jpg");

    background-size:cover;

    background-position:center;

    text-align:center;

    color:white;

}

#cta h2{

    font-size:48px;

    margin-bottom:20px;

}

#cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

    font-size:18px;

}

/*====================================================
                CONTACT
====================================================*/

#contact{

    background:#f8fafc;

}

form{

    max-width:800px;

    margin:auto;

}

form input,
form textarea{

    width:100%;

    padding:18px;

    border:1px solid #ddd;

    border-radius:10px;

    margin-bottom:20px;

    font-size:16px;

    font-family:Poppins,sans-serif;

}

form textarea{

    resize:none;

    height:180px;

}

form input:focus,
form textarea:focus{

    outline:none;

    border-color:var(--primary);

}

form button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:10px;

    background:var(--primary);

    color:white;

    font-size:17px;

    cursor:pointer;

    transition:.35s;

    font-weight:600;

}

form button:hover{

    background:var(--secondary);

}

/*====================================================
                FOOTER
====================================================*/

footer{

    background:#0F172A;

    color:white;

    padding:80px 0 30px;

    text-align:center;

}

footer h3{

    font-size:30px;

    margin-bottom:15px;

}

footer p{

    color:#cbd5e1;
    margin-bottom: 5px;
    text-align: left;
    align-content: left;

}

.socials{

    margin:35px 0;

}

.socials a{

   /* display:inline-flex;

    justify-content:center;

    align-items:center;

    width:50px;

    height:30px;

    border-radius:50%;

    background:#1E293B;

    color:white;

    margin:0 8px;

    transition:.35s;*/

}

.socials a:hover{

    background:var(--primary);

    transform:translateY(-6px);

}

.copyright{

    margin-top:30px;

    font-size:14px;

    opacity:.8;

}

/*====================================================
                RESPONSIVE
====================================================*/

@media(max-width:992px){

.about-content{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.projects-grid{

grid-template-columns:repeat(2,1fr);

}

#stats .container{

grid-template-columns:repeat(2,1fr);

}

.hero-content h1{

font-size:38px;

}

}

@media(max-width:768px){

header nav{

display:none;

}

.services-grid,
.projects-grid,
#stats .container{

grid-template-columns:1fr;

}

.hero-content{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.section-title h2{

font-size:32px;

}

#cta h2{

font-size:34px;

}

.hero-content h1{

font-size:40px;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:32px;

}

.hero-content p{

font-size:16px;

}

.btn-primary,
.btn-secondary{

display:block;

margin:15px auto;

}

section{

padding:80px 0;

}






.page-banner{
    height:3.2rem;
    background:
        linear-gradient(rgba(0,40,85,.65), rgba(0,40,85,.65)),
        url('../images/contact1.jpeg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
}

.page-banner p{
    font-size:20px;
    max-width:700px;
    margin:auto;
}font-size:20px;
    max-width:700px;
    margin:auto;