.rath-page {
    background: #f7f7f7;
    padding-bottom: 50px;
}



/* Section */

.section-title {

    background: linear-gradient(90deg, #9d0000, #d40000);

    color: #fff;

    padding: 15px 20px;

    font-size: 24px;

    font-weight: bold;

    border-radius: 8px;

    margin-bottom: 20px;

}

/* Cards */

.live-card,
.schedule-card {

    background: #fff;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .08);

}

.live-body {

    padding: 15px;

}

.schedule-body {

    padding: 10px 20px;

}

.schedule-item {

    display: flex;

    justify-content: space-between;

    padding: 15px 0;

    border-bottom: 1px solid #eee;

}

.schedule-item:last-child {

    border: none;

}

.schedule-time {

    font-weight: bold;

    color: #b00000;

}

.live-badge {

    display: inline-block;

    padding: 5px 12px;

    background: red;

    color: #fff;

    font-size: 13px;

    border-radius: 30px;

    margin-left: 10px;

    animation: pulse 1s infinite;

}

@keyframes pulse {

    0% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .5;
    }

}

@media(max-width:768px) {

    .rath-banner img {

        height: 220px;

    }

}




/* =======================
LATEST NEWS
======================= */

.rath-main-news {

    background: #fff;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

    height: 100%;

}

.rath-main-news img {

    width: 100%;

    height: 350px;

    object-fit: cover;

}

.rath-news-content {

    padding: 20px;

}

.rath-news-content h3 {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 15px;

}

.rath-small-news {

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

    transition: .3s;

}

.rath-small-news:hover {

    transform: translateY(-5px);

}

.rath-small-news img {

    width: 100%;

    height: 160px;

    object-fit: cover;

}

.news-body {

    padding: 15px;

}

.news-body h6 {

    font-weight: 700;

    line-height: 1.5;

}

.news-grid-card {

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);

    transition: .3s;

    height: 100%;

}

.news-grid-card:hover {

    transform: translateY(-5px);

}

.news-grid-card img {

    width: 100%;

    height: 220px;

    object-fit: cover;

}




.rath-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    height: 100%;
}

.rath-header {
    background: linear-gradient(90deg, #a00000, #d70000);
    color: #fff;
    padding: 15px 20px;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rath-body {
    padding: 15px;
}


.rath-card {
    height: 100%;
}

.schedule-list {
    padding: 10px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #ececec;
}

.schedule-row:last-child {
    border-bottom: none;
}

.live-pill {
    background: #fff;
    color: #d70000;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.schedule-list {
    padding: 10px 20px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row span {
    color: #d70000;
    font-weight: 700;
}

@keyframes pulse {
    0% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .4;
    }
}





/*==========================================
LATEST RATH YATRA NEWS
==========================================*/

.rath-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    background: #fff3f3;
    color: #c40000;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rath-section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #111;
}


/*=========================================
FEATURED CARD
=========================================*/

.featured-news {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.featured-news:hover {
    transform: translateY(-4px);
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}


.featured-content {
    padding: 22px;
}

.featured-content h2 {
    font-size: 30px;
    line-height: 1.5;
    color: #111;
    margin-bottom: 12px;
    font-weight: 700;
}

.featured-content small {
    color: #777;
}

/*=========================================
SIDE NEWS
=========================================*/

.side-news-card {

    display: flex;

    align-items: center;

    gap: 18px;

    background: #fff;

    border-radius: 14px;

    overflow: hidden;

    margin-bottom: 18px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);

    transition: .3s;

    

}

.side-news-card:hover {

    transform: translateY(-4px);

}

.side-thumb {

    width: 170px;

    flex-shrink: 0;

}

.side-thumb img {

    width: 100%;

    height: 115px;

    object-fit: cover;

    border-radius: 10px;

}

.side-content {

    flex: 1;

}

.side-content h5 {

    font-size: 18px;

    line-height: 1.45;

    color: #222;

    margin: 8px 0;

    font-weight: 700;

}

.side-content small {

    color: #888;

}

/*=========================================
MOBILE
=========================================*/

@media (max-width: 991px) {

    .featured-image img{
        height:260px;
    }

    .side-news-card{
        display:flex;
        flex-direction:row;
        align-items:flex-start;
        gap:12px;
        padding:10px;
    }

    .side-thumb{
        width:120px;
        min-width:120px;
        flex-shrink:0;
    }

    .side-thumb img{
        width:100%;
        height:80px;
        object-fit:cover;
        border-radius:8px;
    }

    .side-content{
        flex:1;
        min-width:0;
    }

    .side-content h5{
        font-size:15px;
        line-height:1.4;
        margin:4px 0;
        display:-webkit-box;
        -webkit-line-clamp:3;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    .news-desc{
        display:none;
    }

    .news-category{
        font-size:11px;
    }

}


/* =========================
   RATH BANNER
========================= */


.rath-banner img{
    
   
    min-height:420px;
    max-height:650px;
   
   
}

@media(max-width:992px){

    .rath-banner img{
        min-height:320px;
    }

}

@media(max-width:768px){

    .rath-banner img{
        min-height:220px;
    }

}


/* Bottom News */

.grid-news {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.grid-news:hover {
    transform: translateY(-4px);
}

.grid-news .image-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.grid-news .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grid-content {
    padding: 15px;
}

.grid-content h6 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #222;
    margin-bottom: 8px;
}

.grid-content small {
    color: #777;
}









/* ==========================================
   RATH YATRA VIDEOS & SHORTS
========================================== */

/* Card */

.rath-media-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.35s ease;
    height:100%;
}

.rath-media-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.16);
}

/* Image */

.rath-media-card .image-box{
    position:relative;
    overflow:hidden;
    cursor:pointer;
}

.rath-media-card .image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s;
}

.rath-media-card:hover img{
    transform:scale(1.08);
}

/* Shorts */

#shortVideosSectiona .image-box{
    height:300px;
}

/* Videos */

#videosSectiona .image-box{
    height:220px;
}

/* Play Button */

.media-play{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:50px;
    height:50px;

    border-radius:50%;

    background: #c40000;

    display:flex;
    justify-content:center;
    align-items:center;

    color:rgba(255,255,255,.95);

    font-size:15px;

    transition:.3s;
}

.rath-media-card:hover .media-play{

    background:rgba(255,255,255,.95);
    color:#c40000;
    transform:translate(-50%,-50%) scale(1.08);

}

/* Content */

.rath-media-card .grid-content{
    padding:15px;
}

.rath-media-card h6{

    font-size:17px;
    font-weight:700;
    line-height:1.5;
    color:#222;
    margin:0;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;

}

.rath-media-card small{
    display:block;
    margin-top:8px;
    color:#777;
    font-size:13px;
}

/* Section */

#shortVideosSectiona,
#videosSectiona{
    margin-top:25px;
}

/* Responsive */

@media(max-width:991px){

    #shortVideosSectiona .image-box{
        height:250px;
    }

    #videosSectiona .image-box{
        height:200px;
    }

}

@media(max-width:767px){

    #shortVideosSectiona .image-box{
        height:220px;
    }

    #videosSectiona .image-box{
        height:200px;
    }

    .rath-media-card h6{
        font-size:15px;
    }

    .media-play{
        width:40px;
        height:40px;
        font-size:13px;
    }

}

@media(max-width:576px){

    #shortVideosSectiona .image-box{
        height:190px;
    }

    #videosSectiona .image-box{
        height:180px;
    }

}









/* ===========================
   Divine Flower Rain
=========================== */

.flower-rain {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 999;
}

.flower {
    position: absolute;
    top: -80px;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .9;
    animation-name: flowerFall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

@keyframes flowerFall {

    0% {
        transform:
            translateY(-80px) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform:
            translateY(50vh) translateX(40px) rotate(180deg);
    }

    100% {
        transform:
            translateY(110vh) translateX(-40px) rotate(360deg);
        opacity: 0;
    }

}



   /* schedule section  */


.schedule-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    /* Space between time and text */
}

.schedule-content {
    position: relative;
    flex: 1;
}

.schedule-row:last-child .schedule-desc{
    top: auto;
    bottom: 115%;
}

.schedule-row:last-child .schedule-desc::before{
    top: auto;
    bottom: -8px;
    border-top: 8px solid #8B0000;
    border-bottom: none;
}
.schedule-desc {
    position: absolute;
    left: 0;
    top: 115%;
    width: 280px;

    background: linear-gradient(135deg, #8B0000, #c62828, #d32f2f);
    color: #fff;

    padding: 12px 15px;
    border-radius: 12px;

    border: 1px solid rgba(255, 193, 7, .6);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);

    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;

    z-index: 100;
}


.schedule-desc::before{
    content:"";
    position:absolute;
    top:-8px;
    left:22px;

    border-left:8px solid transparent;
    border-right:8px solid transparent;
    border-bottom:8px solid #8B0000;
}


.schedule-row:hover .schedule-desc,
.schedule-row.active .schedule-desc{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}





