/* ==========================
   DailyValueBuzz v1
========================== */

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

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#333;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

header{
    background:#fff;
    height:100px;
    display:flex;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

header .container{
    width:100%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:55px;
    width:auto;
    display:block;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#ff7b00;
}

/* Hero */

.hero{

height:650px;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

color:#fff;

position:relative;

overflow:hidden;

background-size:cover;

background-position:center;

background-repeat:no-repeat;

animation:kenburns 8s ease-in-out infinite alternate;

transition:background-image 1.2s ease-in-out;

}

@keyframes kenburns{

0%{

transform:scale(1);

background-position:center center;

}

100%{

transform:scale(1.08);

background-position:center top;

}

}

.hero.fade{
opacity:.25;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
    font-weight:700;
    text-shadow:0 4px 20px rgba(0,0,0,.45);
}

.hero p{
    max-width:760px;
    margin:auto;
    font-size:18px;
    text-shadow:0 2px 10px rgba(0,0,0,.35);
}

.btn{
    display:inline-block;
    margin-top:35px;
    background:#ff7b00;
    color:#fff;
    padding:14px 34px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#e66900;
    transform:translateY(-2px);
}

/* Sections */

section{
    padding:80px 0;
}

section h2{
    text-align:center;
    margin-bottom:50px;
    font-size:34px;
    color:#163b66;
}

/* Grid */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* Cards */

.card,
.article{
    background:#fff;
    border-radius:14px;
    padding:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.card:hover,
.article:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.card h3,
.article h3{
    margin-bottom:15px;
    color:#0f4c81;
}

.article a{
    display:inline-block;
    margin-top:18px;
    color:#ff7b00;
    text-decoration:none;
    font-weight:600;
}

.article a:hover{
    color:#0f4c81;
}

/* Newsletter */

.newsletter{
    text-align:center;
    background:#eef5fb;
}

.newsletter p{
    max-width:650px;
    margin:auto;
    font-size:18px;
}

/* Footer */

footer{
    background:#10253f;
    color:#fff;
    text-align:center;
    padding:35px 0;
}

.footer-links{
    margin-top:15px;
}

.footer-links a{
    color:#fff;
    margin:0 15px;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff9800;
}

/* Responsive */

@media(max-width:768px){

header .container{
    flex-direction:column;
}

nav{
    margin-top:20px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

nav ul li{
    margin:10px 15px;
}

.hero{
    padding:70px 20px;
}

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

.hero p{
    font-size:16px;
}

section{
    padding:60px 0;
}

section h2{
    font-size:28px;
}

.logo img{
    height:48px;
}

}
/* Feature Stats */

.stats{
background:#0f4c81;
color:#fff;
padding:70px 0;
}

.stats .grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
text-align:center;
}

.stat-box h2{
font-size:42px;
color:#73c0ff;
margin-bottom:10px;
}

.stat-box p{
font-size:17px;
opacity:.9;
}

/* Newsletter Form */

.newsletter-form{
margin-top:30px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.newsletter-form input{
padding:15px;
width:320px;
border:none;
border-radius:40px;
font-size:15px;
}

.newsletter-form button{
border:none;
cursor:pointer;
}

footer a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

footer a:hover{
    color:#ff8a00;
}
.footer-content{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap:80px;
    align-items:start;
}

.footer-logo img{
    height:200px;
    width:auto;
    margin-bottom:20px;
}