body{
background:linear-gradient(
135deg,
#F8FAFF,
#EEF2FF
);
font-family:'Poppins',sans-serif;
padding-bottom:80px;
}
:root{
--primary:#2563EB;
--secondary:#7C3AED;
--accent:#14B8A6;
--bg:#F5F7FF;
--card:#FFFFFF;
--text:#1E293B;
}

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

body{
font-family:'Poppins',sans-serif;
background:linear-gradient(
135deg,
#F8FAFF,
#EEF2FF
);
color:var(--text);
padding-bottom:80px;
}

/* HEADER */

.header{
background:linear-gradient(
135deg,
#2563EB,
#7C3AED
);
padding:15px;
border-radius:0 0 25px 25px;
box-shadow:0 10px 25px rgba(37,99,235,.25);
}

.logo{
height:50px;
width:auto;
}

/* HERO */

.hero{
background:linear-gradient(
135deg,
#2563EB,
#7C3AED
);
padding:30px;
border-radius:30px;
color:#fff;
margin-bottom:20px;
box-shadow:0 15px 35px rgba(124,58,237,.25);
}

.hero h1{
font-size:28px;
font-weight:700;
margin-bottom:10px;
}

.hero p{
opacity:.9;
}

/* BREAKING */

.breaking-news{
background:linear-gradient(
135deg,
#ff512f,
#dd2476
);
color:#fff;
padding:12px;
border-radius:15px;
margin-bottom:15px;
font-weight:600;
}

/* QUICK MENU */

.quick-menu{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-bottom:20px;
}

.quick-item{
background:#fff;
border-radius:25px;
padding:20px 10px;
text-align:center;
text-decoration:none;
color:#222;
font-size:24px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.quick-item:hover{
transform:translateY(-5px);
}

.quick-item span{
display:block;
font-size:13px;
margin-top:5px;
font-weight:600;
}

/* CARDS */

.card-box{
background:#fff;
border-radius:25px;
padding:18px;
margin-bottom:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card-box img{
width:100%;
height:220px;
object-fit:cover;
border-radius:15px;
margin-bottom:10px;
}

.card-box h4,
.card-box h5{
font-weight:700;
margin-bottom:10px;
}

/* TITLES */

.section-title{
font-size:24px;
font-weight:700;
margin:20px 0 15px;
color:#2563EB;
}

/* BUTTONS */

.btn-primary{
background:linear-gradient(
135deg,
#2563EB,
#7C3AED
)!important;
border:none!important;
border-radius:15px!important;
padding:10px 20px!important;
}

.btn-success{
border-radius:15px!important;
}

/* FOOTER */

.footer{
background:linear-gradient(
135deg,
#1E3A8A,
#7C3AED
);
color:#fff;
padding:30px 20px;
border-radius:25px 25px 0 0;
margin-top:30px;
}

/* BOTTOM NAV */

.bottom-nav{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#fff;
display:flex;
justify-content:space-around;
padding:10px 0;
box-shadow:0 -5px 20px rgba(0,0,0,.08);
border-radius:25px 25px 0 0;
z-index:999;
}

.bottom-nav a{
text-decoration:none;
color:#444;
font-size:12px;
text-align:center;
}

.bottom-nav a.active{
color:#2563EB;
font-weight:700;
}

/* MOBILE */

@media(max-width:768px){

.quick-menu{
grid-template-columns:repeat(2,1fr);
}

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

.card-box img{
height:180px;
}

}