* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #efefef;
    font-family: 'Noto Sans Telugu', sans-serif;
}

a {
    text-decoration: none;
    color : #0056a3;
}

.top-trending {
    background: #c60200;
    color: #fff;
    padding: 15px 0px 5px 0px;
    font-size: 15px;
    font-weight: 600;
}

.top-trending span {
    color: #ffde00;
    margin-right: 15px;
}

.main-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    display: flex;
}

.side-ad {
    padding: 0 10px;
    width: 160px;
    position: sticky;
    top: 0;
    height: 80vh;
    overflow: hidden;
}

.side-ad img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.main-content {
    flex: 1;
    background: #fff;
}

.header {
    background: #fff;
    padding: 10px;
}

.logo {
    font-size: 48px;
    font-weight: 700;
    color: #0b6bd3;
}

.logo span {
    color: red;
}

.date {
    font-size: 14px;
    font-weight: 500;
}

.top-banner img {
    width: 100%;
    border-radius: 6px;
}

.top-icons {
    display: flex;
    gap: 10px;
}

.icon-box {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    width: 90px;
    font-size: 14px;
    font-weight: 600;
}

.icon-box i {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

/* NAVBAR */

.news-navbar {
    background: #fffb02;
    padding: 0;

    position: sticky;
    top: 0;
    z-index: 9999;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
}

.news-navbar .nav-link {
    color: #000000 !important;
    font-size: 18px;
    font-weight: 600;
    padding: 5px 15px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}

.news-navbar .nav-link:hover {
    background: #00345c;
    color: #fff !important;
}

/* DROPDOWN */

.mega-dropdown {
    position: relative;
}

.mega-menu {
    width: 700px;
    background: #00345c;
    border: none;
    border-radius: 0;
    padding: 25px;
    display: none;
    left: auto;
    right: 0;
}

.mega-dropdown:hover .mega-menu {
    display: block;
}

.mega-menu ul {
    list-style: none;
    padding: 0;
}

.mega-menu ul li {
    margin-bottom: 15px;
}

.mega-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.mega-menu ul li a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

/* MOBILE */

@media(max-width:991px) {

    .mega-menu {
        width: 100%;
        position: static;
        display: block;
        background: #00345c;
        padding: 15px;
    }

    .mega-dropdown:hover .mega-menu {
        display: block;
    }

    .mega-menu .col-lg-3 {
        margin-bottom: 15px;
    }

    .news-navbar .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

}

.main-top-ad {
    padding: 10px;
}

.main-top-ad img {
    width: 100%;
    border-radius: 8px;
}

/* MAIN SECTION */

.main-section {
    padding: 10px;
}

/* SLIDER */


/* =========================================
   NEWS SLIDER
========================================= */

.news-slider {
    position: relative;

    border-radius: 14px;

    overflow: hidden;

    margin-bottom: 15px;
}

/* IMAGE */

.news-slider img {
    width: 100%;

    height: 500px;

    object-fit: cover;
}

/* OVERLAY */

.slider-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.1));
}

/* CAPTION */

.slider-caption {
    position: absolute;

    bottom: 50px;

    left: 30px;
    right: 30px;

    color: #fff;

    font-size: 18px;

    line-height: 28px;

    font-weight: 700;

    z-index: 5;

    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* ARROWS */

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.45);

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background-size: 45%;
}

/* INDICATORS */

.carousel-indicators {
    bottom: 10px;

    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px !important;

    height: 12px !important;

    border-radius: 50% !important;

    background: #d9d9d9 !important;

    border: none !important;

    margin: 0 5px !important;

    opacity: 1 !important;

    transition: 0.3s;
}

/* ACTIVE DOT */

.carousel-indicators .active {
    background: #ff4d4d !important;

    width: 28px !important;

    border-radius: 20px !important;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media(max-width:768px) {

    .news-slider img {
        height: 250px;
    }

    .slider-caption {
        font-size: 24px;

        line-height: 34px;

        left: 15px;
        right: 15px;

        bottom: 35px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
    }

    .carousel-indicators {
        bottom: 5px;
    }

}

/* SMALL BANNER */

.small-banner img {
    width: 100%;
    border-radius: 6px;
}

/* SMALL NEWS */

/* MINI NEWS CARD */

.mini-news-card {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 5px;
    transition: 0.3s;
    height: 90px;
}

.mini-news-card:hover {
    background: #fff;

    transform: translateY(-2px);

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.mini-news-card img {
    width: 125px;
    min-width: 125px;
    height: 90px;
    object-fit: cover;
    padding: 5px;
    border-radius: 10px;
}

/* CONTENT */

.mini-news-content {
    padding: 13px 6px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 600;
    color: #0056a3;
    display: flex;
    /* align-items: center; */
    height: 100%;
    max-height: 100px;
}

/* MOBILE */

@media(max-width:768px) {

    .mini-news-card {
        height: 110px;
    }

    .mini-news-card img {
        width: 120px;
        min-width: 120px;
        height: 110px;
    }

    .mini-news-content {
        font-size: 16px;
        line-height: 26px;
        padding: 10px;
    }

}

/* RIGHT SIDE */

/* LATEST NEWS BOX */

.latest-news {
    position: relative;

    background: #f5f5f5;

    border: 1px solid #d8d8d8;

    border-radius: 8px;

    padding: 15px;

    height: 810px;

    overflow: hidden;
}

/* TITLE */

.latest-news h3 {
    text-align: center;

    color: #d40000;

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 15px;
}

/* SCROLL AREA */

.latest-news-scroll {
    height: 720px;

    overflow-y: auto;

    padding-right: 5px;
}

/* HIDE SCROLLBAR */

.latest-news-scroll::-webkit-scrollbar {
    width: 0px;
}

.latest-news-scroll {
    scrollbar-width: none;
}

/* NEWS LIST */

.latest-news ul {
    padding-left: 20px;
}

.latest-news li {
    border-bottom: 1px solid #000;
    padding-bottom: 3px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #111;
}

/* MORE BUTTON */

.latest-more {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
}

.latest-more a {
    display: inline-block;
    background: #f5f5f5;
    border: 1px solid #ababab;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #0056a3;
    text-decoration: none;
    /* border-radius: 6px 0 6px 6px; */
    transition: 0.3s;
}

.latest-more a:hover {
    background: #0056a3;
    color: #fff;
}

/* MOBILE */

@media(max-width:768px) {

    .latest-news {
        height: auto;
    }

    .latest-news-scroll {
        height: 400px;
    }

    .latest-news h3 {
        font-size: 24px;
    }

    .latest-news li {
        font-size: 16px;
        line-height: 28px;
    }

}

.sidebar-ad {
    margin-top: 15px;
}

.sidebar-ad img {
    width: 100%;
    border-radius: 8px;
}

/* MOBILE */

@media(max-width:768px) {

    .news-slider img {
        height: 250px;
    }

    .slider-caption {
        font-size: 20px;
        line-height: 30px;
        padding: 12px;
    }

    .slider-bottom-title {
        font-size: 18px;
    }

    .small-news-content {
        font-size: 16px;
        line-height: 26px;
    }

    .latest-news {
        margin-top: 20px;
    }

    .latest-news li {
        font-size: 14px;
        line-height: 18px;
    }

}

.category-block {
    margin-top: 35px;
}

.section-title {
    background: #0058a3;
    color: #fff;
    padding: 12px 15px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 20px;
}

.news-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    margin-bottom: 20px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-card-content {
    padding: 15px;
}

.news-card-content h4 {
    font-size: 22px;
    line-height: 34px;
    font-weight: 700;
}

.news-card-content p {
    margin-top: 10px;
    line-height: 28px;
    font-size: 16px;
}


/* VIDEO SECTION */

.video-gallery-section {
    margin-top: 10px;
}

/* TITLE */

.video-heading {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #0056a3, #0077d9);
    color: #fff;
    padding: 8px 12px 5px 12px;
    border-radius: 0 50px 50px 0;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-heading a {
    color: #fff;
    margin-left: 15px;
    font-size: 15px;
}



/* VIDEO CARD */

.video-news-card {
    background: #fff;

    border: 1px solid #ddd;

    border-radius: 12px;

    overflow: hidden;

    transition: 0.3s;

    margin-bottom: 2px;

    height: 100%;
}

.video-news-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.video-thumb {
    position: relative;
}

.video-thumb img {
    width: 100%;

    height: 130px;

    object-fit: cover;
}

/* IMAGE */

.video-thumbs {
    position: relative;
}

.video-thumbs img {
    width: 100%;

    height: 180px;

    object-fit: cover;
}

/* PLAY ICON */

.play-icon {
    position: absolute;

    bottom: 12px;
    left: 12px;

    width: 42px;
    height: 42px;

    background: #ff2d75;

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 24px;
}

/* CONTENT */

.video-news-content {
    padding: 5px 5px;

    font-size: 13px;

    line-height: 20px;

    font-weight: 600;

    text-align: center;

    color: #111;

    min-height: 50px;
}

/* MOBILE */

@media(max-width:768px) {

    .video-title {
        font-size: 22px;
        padding: 10px 16px;
    }

    .video-title::after {
        border-top: 24px solid transparent;
        border-bottom: 24px solid transparent;
        border-left: 24px solid #0056a3;
        right: -24px;
    }

    .video-thumb img {
        height: 150px;
    }

    .video-news-content {
        font-size: 17px;
        line-height: 28px;
        min-height: auto;
        padding: 12px 10px;
    }

    .play-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

}

/* STORIES SECTION */

.stories-section {
    margin-top: 10px;
}

/* TITLE */

.story-title {
    background: #0056a3;

    color: #fff;

    display: inline-flex;
    align-items: center;

    padding: 12px 20px;

    font-size: 30px;
    font-weight: 700;

    position: relative;

    margin-bottom: 20px;
}

.story-title::after {
    content: '';

    position: absolute;

    top: 0;
    right: -30px;

    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #0056a3;
}

.story-title span {
    margin-left: 12px;
}

/* STORIES WRAPPER */

.stories-wrapper {
    display: flex;

    gap: 20px;

    overflow-x: auto;

    padding-bottom: 10px;
}

.stories-wrapper::-webkit-scrollbar {
    display: none;
}

/* STORY CARD */

.story-card {
    position: relative;

    min-width: 80px;

    height: 220px;

    border-radius: 14px;

    overflow: hidden;

    flex-shrink: 0;

    text-decoration: none;

    transition: 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */

.story-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 50%);
}

/* TEXT */

.story-text {
    position: absolute;

    bottom: 15px;

    left: 5px;
    right: 5px;

    color: #fff;

    font-size: 13px;

    line-height: 20px;

    font-weight: 700;

    text-align: center;
}

/* ICON */
/* STORY ICON */

.story-icon {
    position: absolute;

    bottom: 18px;
    right: 18px;

    width: 32px;
    height: 32px;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(10px);

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    z-index: 5;
}

/* ICON */

.story-icon i {
    font-size: 18px;

    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}

/* MOBILE */

@media(max-width:768px) {

    .story-card {
        min-width: 180px;
        height: 360px;
    }

    .story-text {
        font-size: 20px;
        line-height: 30px;
        bottom: 25px;
    }

    .story-title {
        font-size: 22px;
        padding: 10px 16px;
    }

    .story-title::after {
        border-top: 24px solid transparent;
        border-bottom: 24px solid transparent;
        border-left: 24px solid #0056a3;
        right: -24px;
    }

}

/* CATEGORY NEWS SECTION */

.category-news-section {
    margin-top: 40px;
}

/* BOX */

.category-news-box {
    margin-bottom: 25px;
}

/* TITLE */

.category-title {
    background: #0056a3;

    color: #fff;

    display: inline-flex;
    align-items: center;

    padding: 12px 20px;

    font-size: 28px;
    font-weight: 700;

    position: relative;

    margin-bottom: 15px;
}

.category-title::after {
    content: '';

    position: absolute;

    top: 0;
    right: -28px;

    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-left: 28px solid #0056a3;
}

.category-title span {
    margin-left: 12px;
}

/* FEATURED */

.category-featured {
    background: #fff;

    border: 1px solid #ddd;

    border-radius: 10px;

    overflow: hidden;

    margin-bottom: 15px;
}

.category-featured img {

    width: 100%;
    height: 100%;
    max-height: 200px;
}

.category-featured h4 {

    padding: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #0056a3;
}

/* LIST */

.category-news-list {
    list-style: none;

    padding: 0;
}

.category-news-list li {

    position: relative;
    padding-left: 22px;
    /* margin-bottom: 0px; */
    font-size: 16px;
    line-height: 39px;
    font-weight: 500;
    color: #111;
}

/* BULLET */

.category-news-list li::before {
    content: '';

    position: absolute;

    left: 0;
    top: 7px;

    width: 12px;
    height: 12px;

    background: #0056a3;

    border-radius: 50%;
}

/* VIDEO ICON */

.category-news-list li span {
    color: #ff2d75;

    margin-left: 8px;

    font-size: 22px;
}

/* MOBILE */

@media(max-width:768px) {

    .category-title {
        font-size: 22px;
        padding: 10px 16px;
    }

    .category-title::after {
        border-top: 24px solid transparent;
        border-bottom: 24px solid transparent;
        border-left: 24px solid #0056a3;

        right: -24px;
    }

    .category-featured img {
        height: 200px;
    }

    .category-featured h4 {
        font-size: 18px;
        line-height: 30px;
    }

    .category-news-list li {
        font-size: 16px;
        line-height: 28px;
    }

}

/* RASI SECTION */

.rasi-section {
    margin-top: 40px;
}

/* LEFT BOX */

.today-rasi-box {
    background: #fff;

    border: 1px solid #ddd;

    border-radius: 12px;

    padding: 20px;

    height: 100%;
}

.today-rasi-box h3 {

    color: red;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rasi-date {

    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.rasi-description {

    font-size: 13px;
    line-height: 25px;
    color: #111;
}

.rasi-description span {
    color: red;

    font-weight: 700;
}

/* RIGHT */

.rasi-wrapper {
    background: #fff;

    border: 1px solid #ddd;

    border-radius: 12px;

    padding: 20px;
}

.rasi-title {
    text-align: center;
    color: red;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* CARD */

.rasi-card {
    display: flex;
    align-items: center;

    border-radius: 12px;

    overflow: hidden;

    margin-bottom: 18px;

    text-decoration: none;

    transition: 0.3s;
}

.rasi-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ICON */

.rasi-icon {

    width: 56px;
    height: 60px;
    margin: 7px 0px 0px 0px;
    /* background: #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
}

/* NAME */

.rasi-name {
    flex: 1;
    padding: 0 5px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* COLORS */

.green {
    background: #c9efbf;
}

.pink {
    background: #f4d0d6;
}

.purple {
    background: #f0c8e5;
}

.blue {
    background: #d9dbff;
}

.lightpink {
    background: #ffd5ef;
}

.lavender {
    background: #d8d8ff;
}

.mint {
    background: #c8f1e2;
}

.yellow {
    background: #ffe8a8;
}

.cyan {
    background: #c9f2e4;
}

.orange {
    background: #ffd08c;
}

.red {
    background: #ffd1d1;
}

.lime {
    background: #d5ffca;
}

/* MOBILE */

@media(max-width:768px) {

    .today-rasi-box {
        margin-bottom: 20px;
    }

    .today-rasi-box h3 {
        font-size: 24px;
    }

    .rasi-date {
        font-size: 18px;
    }

    .rasi-description {
        font-size: 16px;
        line-height: 30px;
    }

    .rasi-title {
        font-size: 26px;
    }

    .rasi-icon {
        width: 55px;
        height: 55px;

        font-size: 30px;
    }

    .rasi-name {
        font-size: 18px;
    }

}


/* FOOTER */

.main-footer {
    background: #004d87;

    color: #fff;

    margin-top: 50px;

    position: relative;
}

/* CONTAINER */

.main-footer .container-fluid {
    padding: 25px 20px;
}

/* TOP */

.footer-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    padding-bottom: 20px;
}

/* LOGO */

.footer-logo {
    font-size: 42px;

    font-weight: 700;

    color: #fff;
}

/* LINKS */

.footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    justify-content: center;
}

.footer-links a {
    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffde00;
}

/* APPS */

.footer-apps {
    display: flex;

    gap: 12px;
}

.app-btn {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    cursor: pointer;

    transition: 0.3s;
}

.android {
    background: #56c244;
}

.apple {
    background: #777;
}

.app-btn:hover {
    transform: translateY(-3px);
}

/* COPYRIGHT */

.footer-copy {
    text-align: center;

    font-size: 16px;

    font-weight: 700;

    margin-top: 20px;
}

/* DISCLAIMER */

.footer-disclaimer {
    text-align: center;

    margin-top: 15px;

    font-size: 18px;

    line-height: 34px;

    color: #e5e5e5;

    max-width: 1100px;

    margin-left: auto;
    margin-right: auto;
}

/* BOTTOM */

.footer-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* POLICY */

.footer-policy {
    font-size: 18px;
}

.footer-policy span {
    color: #ffde00;

    font-weight: 700;
}

/* PRIVACY */

.footer-privacy {
    color: #ffde00;

    font-size: 18px;

    font-weight: 700;
}

/* SCROLL TOP */

#scrollTopBtn {
    position: fixed;

    bottom: 90px;
    right: 20px;

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 12px;

    background: #ff2d75;

    color: #fff;

    font-size: 24px;

    z-index: 9999;

    cursor: pointer;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE */

@media(max-width:768px) {

    .footer-top {
        flex-direction: column;

        text-align: center;
    }

    .footer-logo {
        font-size: 30px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-copy {
        font-size: 20px;
        line-height: 32px;
    }

    .footer-disclaimer {
        font-size: 15px;
        line-height: 28px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

    .footer-policy,
    .footer-privacy {
        font-size: 15px;
    }

    #scrollTopBtn {
        width: 45px;
        height: 45px;

        font-size: 20px;

        right: 15px;
    }

}

.mobile-menu {
    display: none;
}

@media(max-width:1200px) {

    .side-ad {
        display: none;
    }

}

@media(max-width:768px) {

    body {
        padding-bottom: 75px;
    }

    .logo {
        font-size: 30px;
        text-align: center;
    }

    .date {
        text-align: center;
        margin-bottom: 15px;
    }

    .top-icons {
        display: none;
    }

    .news-slider img {
        height: 260px;
    }

    .slider-caption {
        padding: 15px;
    }

    .slider-caption h2 {
        font-size: 22px;
        line-height: 34px;
    }

    .latest-news {
        margin-top: 20px;
    }

    .latest-news h3 {
        font-size: 22px;
    }

    .latest-news li {
        font-size: 16px;
        line-height: 28px;
    }

    .news-card img {
        height: 200px;
    }

    .news-card-content h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .section-title {
        font-size: 20px;
    }

    .mobile-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 9999;
    }

    .mobile-menu a {
        color: #111;
        text-align: center;
        font-size: 13px;
    }

    .mobile-menu i {
        display: block;
        font-size: 22px;
        margin-bottom: 5px;
    }

}


/* =========================================
   FINAL RESPONSIVE FIXES
========================================= */

html,
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

iframe {
    max-width: 100%;
}

/* MAIN WRAPPER */

.main-wrapper {
    width: 100%;

    max-width: 1600px;

    margin: auto;

    display: flex;

    gap: 10px;
}

.main-content {
    flex: 1;

    min-width: 0;
}

/* SIDE ADS */

.side-ad {
    width: 160px;

    flex-shrink: 0;
}

.side-ad img {
    width: 100%;

    height: auto;
}

/* NAVBAR */

.news-navbar {
    position: sticky;

    top: 0;

    z-index: 9999;
}

/* CUSTOM MOBILE TOGGLER */

.custom-toggler {
    background: #0056a3;

    border: 2px solid #ffffff;

    padding: 6px 10px;

    border-radius: 6px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* TOGGLER ICON */

.custom-toggler .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* HOVER */

.custom-toggler:hover {
    background: #003d75;
}

/* MOBILE POSITION */

@media(max-width:768px) {

    .navbar-toggler {
        margin: 8px;
    }

}

/* VIDEO */

.live-video iframe {
    width: 100%;

    height: 250px;

    border: none;

    border-radius: 10px;
}

/* SLIDER */

.news-slider img {
    width: 100%;

    height: 350px;

    object-fit: cover;
}

/* STORIES */

.stories-wrapper {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}

.story-card {
    position: relative;

    width: 100%;

    height: 220px;

    border-radius: 14px;

    overflow: hidden;

    text-decoration: none;

    transition: 0.3s;
}

.story-card img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}

.story-text {
    position: absolute;

    bottom: 65px;

    left: 10px;

    right: 10px;

    color: #fff;

    font-size: 15px;

    line-height: 22px;

    font-weight: 700;

    text-align: center;

    z-index: 3;
}

.story-icon {
    position: absolute;

    bottom: 15px;

    right: 15px;

    width: 36px;

    height: 36px;

    background: rgba(255, 255, 255, 0.92);

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 5;
}

.story-icon i {
    font-size: 18px;

    color: #111;
}

/* MINI NEWS */

.mini-news-card {
    display: flex;

    align-items: center;

    gap: 10px;

    height: auto;

    min-height: 95px;
}

.mini-news-card img {
    width: 120px;

    min-width: 120px;

    height: 90px;

    object-fit: cover;
}

.mini-news-content {
    flex: 1;

    padding: 8px;

    font-size: 15px;

    line-height: 22px;
}

/* LATEST NEWS */

.latest-news {
    height: auto;

    min-height: 600px;
}

.latest-news-scroll {
    max-height: 520px;

    overflow-y: auto;
}

/* CATEGORY */

.category-featured img {
    width: 100%;

    height: 220px;

    object-fit: cover;
}

.category-news-list li {
    line-height: 30px;
}

/* RASI */

.rasi-wrapper .row {
    row-gap: 12px;
}

.rasi-card {
    height: 65px;

    margin-bottom: 0;
}

.rasi-icon {
    width: 60px;

    min-width: 60px;

    height: 65px;

    font-size: 30px;
}

.rasi-name {
    font-size: 16px;
}

/* FOOTER */

.footer-links {
    justify-content: center;
}

.footer-links a {
    font-size: 13px;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media(max-width:1200px) {

    .main-wrapper {
        display: block;
    }

    .side-ad {
        display: none;
    }

    .stories-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media(max-width:768px) {

    body {
        padding-bottom: 75px;
    }

    .container-fluid {
        padding-left: 10px !important;

        padding-right: 10px !important;
    }

    .main-section {
        padding: 8px;
    }

    /* HEADER */

    .header {
        text-align: center;
    }

    .logo img {
        max-width: 80px;

        height: auto;
    }

    .date {
        margin-bottom: 15px;
    }

    .top-icons {
        display: none;
    }

    /* NAVBAR */

    .navbar-nav {
        background: #fffb02;

        padding: 10px;
    }

    .news-navbar .nav-link {
        font-size: 16px;

        padding: 12px !important;

        border-bottom: 1px solid #ddd;
    }

    .mega-menu {
        width: 100%;

        position: static;
    }

    /* SLIDER */

    .news-slider img {
        height: 230px;
    }

    .slider-caption {
        font-size: 18px;

        line-height: 28px;

        padding: 12px;
    }

    /* SMALL NEWS */

    .mini-news-card {
        align-items: flex-start;

        min-height: 100px;
    }

    .mini-news-card img {
        width: 105px;

        min-width: 105px;

        height: 95px;
    }

    .mini-news-content {
        font-size: 14px;

        line-height: 22px;

        padding: 8px;
    }

    /* LATEST NEWS */

    .latest-news {
        margin-top: 20px;

        min-height: auto;
    }

    .latest-news h3 {
        font-size: 24px;
    }

    .latest-news-scroll {
        max-height: 400px;
    }

    .latest-news li {
        font-size: 15px;

        line-height: 24px;
    }

    /* VIDEO SECTION */

    .video-heading {
        font-size: 18px;
    }

    .video-thumb img {
        height: 120px;
    }

    .video-news-content {
        font-size: 14px;

        line-height: 22px;
    }

    /* STORIES */

    .stories-wrapper {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .story-card {
        height: 260px;
    }

    .story-text {
        font-size: 16px;

        line-height: 24px;

        bottom: 60px;
    }

    /* CATEGORY */

    .category-news-box {
        margin-bottom: 30px;
    }

    .category-featured img {
        height: 200px;
    }

    .category-featured h4 {
        font-size: 18px;

        line-height: 28px;
    }

    .category-news-list li {
        font-size: 15px;

        line-height: 28px;
    }

    /* RASI */

    .today-rasi-box {
        margin-bottom: 20px;
    }

    .rasi-title {
        font-size: 26px;
    }

    .rasi-card {
        height: 60px;
    }

    .rasi-icon {
        width: 55px;

        min-width: 55px;

        height: 60px;

        font-size: 28px;
    }

    .rasi-name {
        font-size: 15px;
    }

    /* FOOTER */

    .footer-top {
        flex-direction: column;

        text-align: center;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-copy {
        font-size: 16px;

        line-height: 28px;
    }

    .footer-disclaimer {
        font-size: 14px;

        line-height: 24px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }

    /* MOBILE MENU */

    .mobile-menu {
        position: fixed;

        bottom: 0;

        left: 0;

        width: 100%;

        background: #fff;

        display: flex;

        justify-content: space-around;

        padding: 10px 0;

        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);

        z-index: 9999;
    }

    .mobile-menu a {
        color: #111;

        text-align: center;

        font-size: 12px;
    }

    .mobile-menu i {
        display: block;

        font-size: 20px;

        margin-bottom: 4px;
    }

}

/* =========================================
   SINGLE NEWS SECTION
========================================= */

.news-details-card {
    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    border: 1px solid #e5e5e5;

    padding: 20px;
}

/* BREADCRUMB */

.news-breadcrumb {
    font-size: 14px;

    color: #777;

    margin-bottom: 5px;
}

.news-breadcrumb a {
    color: #0056a3;

    text-decoration: none;
}

/* TITLE */

.news-title {
    font-size: 20px;

    line-height: 45px;

    font-weight: 700;

    color: #d40000;

    margin-bottom: 5px;
}

/* META */

.news-meta {
    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 5px;

    border-bottom: 1px solid #eee;

    padding-bottom: 5px;
}

/* AUTHOR */

.news-author {
    display: flex;

    align-items: center;

    gap: 12px;
}

.news-author img {
    width: 50px;
    height: 50px;

    border-radius: 50%;
}

.news-author-info h5 {
    margin: 0;

    font-size: 16px;

    font-weight: 700;
}

.news-author-info p {
    margin: 0;

    font-size: 13px;

    color: #777;
}

/* SHARE */

.news-share {
    display: flex;

    align-items: center;

    gap: 10px;
}

.news-share a {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #fff;

    font-size: 18px;

    transition: 0.3s;
}

.news-share a:hover {
    transform: translateY(-3px);
}

/* COLORS */

.fb {
    background: #1877f2;
}

.tw {
    background: #000;
}

.wa {
    background: #25d366;
}

.tg {
    background: #229ED9;
}

.link {
    background: #ff2d75;
}

/* IMAGE */

.news-feature-image {
    margin-bottom: 25px;
}

.news-feature-image img {
    width: 100%;

    border-radius: 10px;
}

/* CONTENT */

.news-content {
    font-size: 22px;

    line-height: 32px;

    color: #222;
}

.news-content p {
    margin-bottom: 22px;
}

/* HIGHLIGHT */

.news-highlight {
    background: #f4f8ff;

    border-left: 5px solid #0056a3;

    padding: 15px 18px;

    border-radius: 8px;

    margin: 25px 0;

    font-weight: 600;

    color: #0056a3;
}

/* TAGS */

.news-tags {
    margin-top: 30px;
}

.news-tags a {
    display: inline-block;

    background: #f1f1f1;

    color: #111;

    padding: 8px 14px;

    border-radius: 30px;

    text-decoration: none;

    margin-right: 10px;

    margin-bottom: 10px;

    font-size: 14px;

    transition: 0.3s;
}

.news-tags a:hover {
    background: #0056a3;

    color: #fff;
}

/* MOBILE */

@media(max-width:768px) {

    .news-details-card {
        padding: 15px;
    }

    .news-title {
        font-size: 20px;

        line-height: 30px;
    }

    .news-content {
        font-size: 16px;

        line-height: 30px;
    }

    .news-meta {
        flex-direction: column;

        align-items: flex-start;
    }

    .news-share {
        width: 100%;

        justify-content: flex-start;
    }

}

/* =========================================
   SIDE NEWS SECTION
========================================= */

.side-news-section {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

/* CARD */

.side-news-card {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 10px;

    background: #fff;

    border: 1px solid #dcdcdc;

    border-radius: 14px;

    padding: 8px 6px;

    text-decoration: none;

    transition: 0.3s;

    overflow: hidden;
}

/* HOVER */

.side-news-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);

    border-color: #0056a3;
}

/* LEFT BORDER EFFECT */

.side-news-card::before {
    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;

    height: 100%;

    background: #0056a3;

    opacity: 0;

    transition: 0.3s;
}

.side-news-card:hover::before {
    opacity: 1;
}

/* DOT */

.news-dot {
    width: 9px;
    height: 9px;

    min-width: 9px;

    background: #111;

    border-radius: 50%;

    margin-top: 7px;
}

/* CONTENT */

.side-news-content {
    font-size: 14px;

    line-height: 22px;

    font-weight: 600;

    color: #111;

    transition: 0.3s;
}

.side-news-card:hover .side-news-content {
    color: #0056a3;
}

/* MOBILE */

@media(max-width:768px) {

    .side-news-card {
        padding: 14px 12px;

        border-radius: 12px;
    }

    .side-news-content {
        font-size: 12px;

        line-height: 22px;
    }

    .news-dot {
        margin-top: 9px;
    }

}