@charset "utf8";
/* CSS Document */
/* HEADER */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f7fb;
    color:#222;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
header{
    background:#fff;
    padding:18px 0;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:246px;
	height:76px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover,
nav ul li .active{
    color:#0c9db8;
}

/* HERO */

.page-hero{
    background:
    linear-gradient(rgba(5,22,43,.82),rgba(5,22,43,.82)),
    url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    padding:130px 0 90px;
    text-align:center;
    color:#fff;
}

.page-hero h1{
    font-size:60px;
    font-weight:800;
    margin-bottom:20px;
}

.page-hero p{
    max-width:800px;
    margin:auto;
    line-height:1.9;
    opacity:.92;
    font-size:18px;
}

/* CONTENT */

.section{
    padding:90px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.about-text h2{
    font-size:42px;
    margin-bottom:25px;
    color:#102f56;
}

.about-text p{
    line-height:2;
    margin-bottom:20px;
    color:#555;
}

/* STATS */

.stats{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.stat-box{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.stat-box h3{
    font-size:38px;
    color:#0c9db8;
    margin-bottom:10px;
}

.stat-box span{
    color:#555;
    font-weight:500;
}

/* MISSION */

.mission{
    background:#d9eef4;
}

.mission-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.mission-box{
    background:#fff;
    border-radius:25px;
    padding:45px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.mission-box h3{
    margin-bottom:20px;
    font-size:28px;
    color:#10385d;
}

.mission-box p{
    line-height:1.9;
    color:#555;
}

/* WHY */

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-box{
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-8px);
}

.why-box img{
    width:70px;
    margin-bottom:20px;
}

.why-box h3{
    margin-bottom:15px;
}

.why-box p{
    color:#666;
    line-height:1.8;
}

/* CTA */

.cta{
    background:#0a7e97;
    padding:90px 0;
    text-align:center;
    color:#fff;
}

.cta h2{
    font-size:46px;
    margin-bottom:20px;
}

.cta p{
    max-width:750px;
    margin:auto;
    line-height:1.9;
    margin-bottom:35px;
}

.cta a{
    display:inline-block;
    background:#fff;
    color:#0a7e97;
    text-decoration:none;
    padding:18px 40px;
    border-radius:40px;
    font-weight:700;
}

/* FOOTER */

footer{
    background:#073b4b;
    color:#fff;
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-logo img{
    width:200px;
    margin-bottom:15px;
}

footer h3{
    margin-bottom:20px;
}

footer ul{
    list-style:none;
}

footer ul li{
    margin-bottom:10px;
}

footer ul li a{
    color:#fff;
    text-decoration:none;
    opacity:.9;
}

.copyright{
    text-align:center;
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
    font-size:14px;
}

/* MOBILE */

@media(max-width:992px){

    .about-grid,
    .mission-grid,
    .why-grid,
    .footer-grid,
    .stats{
        grid-template-columns:1fr;
    }

    nav{
        display:none;
    }

    .page-hero h1{
        font-size:40px;
    }

    .about-text h2{
        font-size:32px;
    }

    .cta h2{
        font-size:34px;
    }

    .logo{
        width:100%;
        text-align:center;
    }

    .logo img{
        margin:auto;
        display:block;
		width:246px;
		height:76px;
    }

}

