

:root {
    --ntv-primary: #f6931f;
    --ntv-secondary: #0d47a1;
    --ntv-accent: #f6931f;
    --ntv-light: #f8f9fa;
    --ntv-dark: #0f172a;
    --glass: rgba(255, 255, 255, 0.9);
}
body {
    font-family: 'Mukta', sans-serif;
    background-color: var(--ntv-light);
}

/* --- Modern Navbar Styling --- */
.navbar {
 
   
    padding: 0.6rem 0;
    transition: all 0.3s ease;
 
    backdrop-filter: blur(10px);
    background-color: var(--glass);
    border-bottom: 1px solid rgba(0,0,0,0.05);
   
    z-index: 9999;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-box {
/*    background: linear-gradient(135deg, var(--ntv-primary), #0d47a1);*/
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.4rem;
    box-shadow: 0 4px 8px rgba(26, 35, 126, 0.3);
}

.nav-link {
    font-weight: 600;
    color: #444 !important;
    padding: 0.5rem 1rem !important;
    margin: 0 2px;
    position: relative;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: var(--ntv-primary) !important;
    }

    /* Hover Line Effect */
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: 0;
        left: 50%;
        background-color: var(--ntv-primary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 70%;
    }

    .nav-link.active {
        color: var(--ntv-primary) !important;
    }

.btn-live {
    background: var(--ntv-accent);
    color: white;
    border: solid 1px #bd2130;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
    animation: pulse-border 2s infinite;
}

    .btn-live:hover {
        background: #bd2130;
        transform: scale(1.05);
        color: white;
    }

 

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}
/* Offcanvas for Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        margin-top: 15px;
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link {
        padding: 10px !important;
        border-bottom: 1px solid #eee;
    }
}

/* News Ticker Wrapper */
.news-ticker-wrapper { 
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 76px; /* Approx navbar height */
    z-index: 1020;
}

.news-ticker-container {
    height: 42px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f3f3f3;
    border-radius: 0 0 12px 12px; 
}

.ticker-label {
    background: var(--ntv-accent);
    color: white;
    padding: 0 25px;
    font-weight: 700;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

    .ticker-label::after {
        content: '';
        position: absolute;
        right: -12px;
        top: 0;
        border-left: 12px solid var(--ntv-accent);
        border-top: 21px solid transparent;
        border-bottom: 21px solid transparent;
    }

.marquee-content {
    font-weight: 500;
    color: #333;
    padding-left: 15px;
    font-size: 0.95rem;
}



#my-video {  
    border-radius: 15px;  
}

.placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgba(255,255,255,0.4);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.news-card {
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 15px;
    overflow: hidden;
}

    .news-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 40px;
}

    footer h5 {
        color: white;
        margin-bottom: 25px;
    }

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: 0.3s;
}

    .footer-link:hover {
        color: #38bdf8;
        transform: translateX(5px);
    }











[data-theme='dark'] {
    --ntv-light: #1e293b;
    --glass: rgba(15, 23, 42, 0.9);
    color: #f1f5f9;
}

body {
    font-family: 'Mukta', sans-serif;
    background-color: var(--ntv-light);
    transition: background-color 0.3s ease;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--ntv-primary);
    border-radius: 10px;
}



.logo-box {
/*    background: linear-gradient(135deg, var(--ntv-primary), var(--ntv-secondary));*/
    color: white;
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.nav-link {
    font-weight: 600;
    margin: 0 5px;
    transition: 0.3s;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--ntv-accent);
        transition: 0.3s;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 80%;
    }



/* --- Video Player Styling --- */
.hero-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0;
    margin-bottom: 40px;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.video-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background: #000;
    position: relative;
}

/* --- Weather Widget --- */
.weather-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 15px;
    margin-top: 20px;
}

/* --- News Ticker --- */
.ticker-wrap {
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

[data-theme='dark'] .ticker-wrap {
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
}

/* --- Program Carousel Custom Styling --- */
.program-carousel-section {
    padding: 40px 0;
    background: rgba(0,0,0,0.02);
}

.carousel-program-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 10px 5px;
}

[data-theme='dark'] .carousel-program-card {
    background: #1e293b;
}

.carousel-program-card img {
    height: 180px;
    object-fit: cover;
    border-bottom: 4px solid var(--ntv-accent);
}

.carousel-program-card .card-body {
    padding: 1.2rem;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--ntv-primary);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* --- Card Hover Effects --- */
.news-card {
    border: none;
    border-radius: 20px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
}

[data-theme='dark'] .news-card {
    background: #1e293b;
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.news-card img {
    border-radius: 20px 20px 0 0;
    height: 200px;
    object-fit: cover;
}

/* --- Dark Mode Toggle --- */
.theme-toggle {
    cursor: pointer;
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--ntv-primary);
}



 

.clock-card {
    border-radius: 10px; 
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
 
    position: relative;
    border: 1px solid #dee2e6;
    z-index: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Flag Icon Styling */
.flag-icon {
    width: 70px;
    height: 45px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.clock-card:hover .flag-icon {
    transform: scale(1.15);
}

.clock-card:hover {
    border-color: #adb5bd;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.city-name {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2d3436;
}

.time-display {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #2d3436;
    font-weight: 700;
    margin: 5px 0;
}

.ampm {
    font-size: 0.85rem;
    margin-left: 4px;
    color: #636e72;
    font-weight: 400;
}

.date-display {
    font-size: 0.7rem;
    color: #636e72;
    font-weight: 500;
    margin-top: 5px;
}

.top-bar {
    background-color: #f6931f;
    color:#fff;
}
.social-icons >a{
    color:#fff;

}



.schedule-wrapper {
    padding: 15px;
    height: 350px;
    overflow-y: auto;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,153,51,0.4);
}

.schedule-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    color: #ffe6b3;
    letter-spacing: 1px;
}

.schedule-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}

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

    .schedule-item:hover {
        background: rgba(255,255,255,0.1);
        padding-left: 8px;
        cursor: pointer;
    }

.program-img {
    width: 75px;
    height: 65px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #ffd700;
}

.program-time {
    font-size: 12px;
    font-weight: bold;
    color: #fffacd;
}

.program-name {
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
    color: #ffffff;
}

.program-desc {
    font-size: 12px;
    color: #ffe6cc;
}

/* Scrollbar */
.schedule-wrapper::-webkit-scrollbar {
    width: 6px;
}

.schedule-wrapper::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 10px;
}
