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

body{
    font-family:'Noto Sans Devanagari', sans-serif;
    background:#f4f4f4;
}

/* ===============================
   GLOBAL CONTAINER (1400px FIXED)
=================================*/
.container{
    width:1400px;
    margin:0 auto;
}

/* ===============================
   TOP BLACK HEADER
=================================*/
.top-header{
    background:#000;
    color:#fff;
    padding:20px 0;
}

.top-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.left-menu i{
    font-size:22px;
    cursor:pointer;
}

.logo img{
    height:40px;   /* jitna chhota chaho utna kam karo */
    width:auto;
}

.logo{
    font-size:32px;
    font-weight:700;
}

.logo span{
    color:#00aaff;
}

.right-icons{
    display:flex;
    gap:20px;
    align-items:center;
}

.right-icons a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.right-icons i{
    cursor:pointer;
}

/* ===============================
   SECOND NAV MENU
=================================*/
.main-nav{
    background:#111;
    border-bottom:1px solid #222;
}

.nav-menu{
    list-style:none;
    display:flex;
    gap:30px;
    padding:16px 0;
}

.nav-menu li{
    color:#fff;
    font-size:15px;
    cursor:pointer;
    position:relative;
}

.nav-menu li:hover{
    color:#00aaff;
}

.nav-menu li.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-17px;
    width:100%;
    height:3px;
    background:#00aaff;
}

/* ===============================
   THIRD MENU (VIDEO etc.)
=================================*/
.main-header{
    background:#fff;
    border-bottom:2px solid #e60000;
}

.nav-wrapper{
    display:flex;
    align-items:center;
}

.home-icon{
    padding:15px 20px;
    border-right:1px solid #eee;
}

.home-icon i{
    font-size:18px;
}

.hamburger{
    display:none;
}

/* ===============================
   MAIN LAYOUT
=================================*/
.main-layout{
    display:flex;
    gap:40px;
    padding:40px 0;
}

/* LEFT SECTION */
.auto-section{
    width:70%;
}

/* RIGHT SIDEBAR */
.sidebar{
    width:30%;
}

/* AUTO INNER */
.news-row{
    display:flex;
    gap:25px;
}

/* BIG NEWS */
.left-news{
    width:65%;
    position:relative;
}

.left-news img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:8px;
}

.left-overlay{
    position:absolute;
    bottom:20px;
    left:20px;
    color:#fff;
}

.left-overlay h1{
    font-size:30px;
}

/* RIGHT LIST */
.right-news{
    width:35%;
}

.right-item{
    display:flex;
    gap:12px;
    margin-bottom:20px;
    background:#fff;
    padding:10px;
    border-radius:6px;
}

.right-item img{
    width:130px;
    height:85px;
    object-fit:cover;
    border-radius:4px;
}

.right-item h4{
    font-size:15px;
}

/* SMALL BELOW */
.small-news{
    display:flex;
    gap:15px;
    margin-top:25px;
    background:#fff;
    padding:12px;
    border-radius:6px;
}

.small-news img{
    width:200px;
    height:120px;
    object-fit:cover;
    border-radius:4px;
}

/* ===============================
   SIDEBAR
=================================*/
.sidebar-title{
    font-size:22px;
    margin-bottom:20px;
    border-left:4px solid #e60000;
    padding-left:10px;
}

.headline-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    background:#fff;
    padding:10px;
    border-radius:6px;
}

.headline-item img{
    width:120px;
    height:80px;
    object-fit:cover;
    border-radius:4px;
}

.tag{
    color:#e60000;
    font-size:12px;
    font-weight:600;
}