/* ===== Reset ===== */

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fa;
    color:#333;
    line-height:1.6;
}

/* ===== Header ===== */

header{
    background:#0056b3;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
    height:60px;
}

/* ===== Navigation ===== */

.navbar{
    display:flex;
    gap:20px;
}

.navbar a{
    color:white;
    text-decoration:none;
    padding:10px 15px;
    border-radius:5px;
    transition:.3s;
    font-weight:bold;
}

.navbar a:hover,
.navbar a.active{
    background:#ffffff;
    color:#0056b3;
}

/* ===== Hero ===== */

.hero{
    background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
               url("../images/banner.jpg");
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:120px 20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.hero h2{
    font-size:30px;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:#ff9800;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
    transition:.3s;
}

.btn:hover{
    background:#e68900;
}

/* ===== Sections ===== */

section{
    padding:60px 10%;
}

.about-home{
    text-align:center;
}

.about-home h2{
    color:#0056b3;
    margin-bottom:20px;
}

/* ===== Cards ===== */

.cards{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
}

.card{
    width:320px;
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    text-align:center;
}

.card h3{
    color:#0056b3;
    margin-bottom:15px;
}

.card a{
    display:inline-block;
    margin-top:15px;
    background:#0056b3;
    color:white;
    text-decoration:none;
    padding:10px 20px;
    border-radius:5px;
}

.card a:hover{
    background:#003d80;
}

/* ===== Statistics ===== */

.stats{
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
    background:#0056b3;
    color:white;
    text-align:center;
}

.stats h2{
    font-size:40px;
}

/* ===== Footer ===== */

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
}

/* ===== Responsive ===== */

@media(max-width:768px){

header{
    flex-direction:column;
}

.navbar{
    flex-direction:column;
    margin-top:15px;
}

.hero h1{
    font-size:34px;
}

.hero h2{
    font-size:24px;
}

.cards{
    flex-direction:column;
    align-items:center;
}

}