/* BODY */

body{
    background:#02172d;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;
}

/* HERO */

.hero{
    height:100vh;

    background-image:
linear-gradient(
rgba(0,0,0,0.55),
rgba(0,0,0,0.55)
),
url("../images/about/about-bg.jfif");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
    text-align:center;
}

.hero-content{
    max-width:800px;
    padding:20px;
    z-index:2;
}

.hero h1{
    font-size:4rem;
    margin-bottom:20px;
    font-weight:bold;
    letter-spacing:1px;
    color:white;
}

.hero p{
    font-size:1.3rem;
    margin-bottom:30px;
    color:#d7e9ff;
}

.hero-btn{
    display:inline-block;
    padding:14px 35px;
    background:#00aaff;
    color:white;
    text-decoration:none;
    border-radius:50px;
    transition:0.4s ease;
    font-weight:bold;
}

.hero-btn:hover{
    background:white;
    color:#02172d;
    transform:translateY(-3px);
}

/* SECTIONS */

.section{
    padding:90px 20px;
}

.container{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.section h3{
    font-size:2.5rem;
    margin-bottom:25px;
}

/* WHO WE ARE */

.section{
    background:white;
}

.section p{
    max-width:850px;
    margin:auto;
    font-size:1.05rem;
    color:#444;
}

/* OUR APPROACH */

.blue-bg{
    background:#042c54;
    color:white;
}

.blue-bg h2{
    color:white;
}

.blue-bg p{
    color:white;
}

/* EXPERTISE */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:50px;
}

.card{
    background:#f4f9ff;
    border:1px solid #dceeff;

    padding:35px 20px;
    border-radius:20px;

    transition:0.4s ease;
}

.card:hover{
    transform:translateY(-10px);
    background:#dceeff;
}

.card i{
    font-size:2.5rem;
    margin-bottom:20px;
    color:black;
}

.card h3{
    font-size:1.2rem;
    color:#02172d;
}

/* MISSION */

.mission{
    background:#d8dadb;
}

.mission h3{
    color:#000000;
}

.mission p{
    color:#000000;
}
/* FOOTER */

footer{
    background:#01101f;
    text-align:center;
    padding:20px;
    color:#ccc;
}

/* ANIMATIONS */

.fade-in{
    opacity:0;
    transform:translateY(40px);
    transition:all 1s ease;
}

.fade-in.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero h1{
        font-size:2.7rem;
    }

    .hero p{
        font-size:1rem;
    }

    .section h2{
        font-size:2rem;
    }

}