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

body{
    font-family:'Poppins',sans-serif;
    background:#eef2f7;
    color:#1e293b;
    line-height:1.7;
}

.container{
    max-width:1280px;
}

a{
    text-decoration:none;
}

/* TOPBAR */

.topbar{
    background:#07182d;
    color:white;
    padding:10px 0;
    font-size:14px;
}

/* HEADER */

.main-header{
    background:white;
    position:sticky;
    top:0;
    z-index:999;
    padding:20px 0;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.nav-link{
    color:#0f172a !important;
    font-weight:600;
    padding:12px !important;
}

.nav-link:hover{
    color:#0d6efd !important;
}

/* SEARCH */

.search-area{
    margin-top:20px;
}

.search-area input{
    padding:14px;
    border-radius:30px 0 0 30px;
}

.search-area button{
    border-radius:0 30px 30px 0;
}

/* CATEGORY BAR */

.category-bar{
    margin-top:20px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.category-bar a{
    background:white;
    border:1px solid #ddd;
    padding:10px 20px;
    border-radius:30px;
    color:#0f172a;
    font-weight:600;
}

.category-bar a:hover{
    background:#0d6efd;
    color:white;
}

.vip-link{
    background:#ffc107 !important;
    color:black !important;
}

/* HERO */

.hero-banner{
    background:
    linear-gradient(rgba(0,0,0,.6),
    rgba(0,0,0,.6)),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;

    min-height:500px;

    border-radius:20px;

    display:flex;
    align-items:center;

    padding:60px;

    color:white;
}

.hero-content{
    max-width:600px;
}

.hero-content h2{
    font-size:50px;
    font-weight:800;
}

.hero-content p{
    font-size:18px;
    margin:20px 0;
}

.hero-btn{
    background:#ffc107;
    color:black;
    padding:14px 30px;
    border-radius:30px;
    font-weight:bold;
}

/* SECTION TITLE */

.section-title{
    font-size:34px;
    font-weight:800;
    margin-bottom:30px;
}

/* NEWS CARD */

.news-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.news-card:hover{
    transform:translateY(-8px);
}

.news-card img{
    height:230px;
    width:100%;
    object-fit:cover;
}

.news-card .card-body{
    padding:25px;
}

.news-card h5{
    font-size:22px;
    font-weight:700;
}

.news-card p{
    color:#666;
}

/* SIDEBAR */

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

.sidebar-card h4{
    margin-bottom:20px;
    font-weight:700;
}

/* BREAKING NEWS */

.breaking-news{
    background:#dc3545;
    color:white;
    padding:15px;
    border-radius:10px;
    font-weight:bold;
}

/* STATS */

.stats-section{
    background:#04172d;
    color:white;
    padding:70px 40px;
    border-radius:20px;
    margin:70px 0;
}

.stats-section h2{
    font-size:42px;
    font-weight:800;
}

.stats-section p{
    color:#cbd5e1;
}

/* NEWSLETTER */

.newsletter{
    background:#04172d;
    color:white;
    padding:70px 0;
    border-radius:20px;
    margin-top:70px;
}

.newsletter-input{
    width:400px;
    max-width:100%;
    padding:15px;
    border:none;
    border-radius:30px;
}

/* FOOTER */

footer{
    background:#020617;
    color:white;
    padding:70px 0;
    margin-top:80px;
}

footer ul{
    list-style:none;
    padding:0;
}

footer li{
    margin-bottom:10px;
}

footer a{
    color:#cbd5e1;
}

footer a:hover{
    color:#ffc107;
}

/* MOBILE */

@media(max-width:768px){

.hero-banner{
    min-height:350px;
    padding:30px;
    text-align:center;
}

.hero-content h2{
    font-size:32px;
}

.category-bar{
    justify-content:center;
}

.nav{
    justify-content:center !important;
}

}