/* ===========================
   RESET
=========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
}

/* ===========================
HEADER
=========================== */

.header{
    background:#ffffff;
    border-bottom:3px solid #01386b;
    padding:12px 25px;
}

.header-container{
    max-width:1300px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

/* Logo */

.logo img{
    width:140px;
}

/* Search */

.search-box{
    flex:1;
    max-width:450px;
    position:relative;
}

.search-box input{
    width:100%;
    height:45px;
    border:2px solid #ddd;
    border-radius:30px;
    padding-left:20px;
    padding-right:50px;
    outline:none;
    font-size:16px;
}

.search-box button{
    position:absolute;
    right:5px;
    top:5px;
    width:35px;
    height:35px;
    border:none;
    background:#f10000;
    color:#fff;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
}

/* Right Side */

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

/* WhatsApp */

.whatsapp a{
    background:#25D366;
    color:#fff;
    padding:12px 20px;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.whatsapp a:hover{
    background:#01386b;
}

/* Time */

.time{
    color:#444;
    font-weight:bold;
    font-size:16px;
}

/* ===========================
Responsive
=========================== */

@media(max-width:992px){

.header-container{
    flex-direction:column;
    align-items:center;
}

.search-box{
    max-width:100%;
    width:100%;
}

.right-box{
    width:100%;
    justify-content:space-between;
}

.logo img{
    width:100px;
}

}

/* ===========================
   MOBILE HEADER LAYOUT
=========================== */

@media(max-width:576px){

.header{
    padding:10px 12px;
}


.header-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;

    align-items:center;

}


/* Logo Left */

.logo{

    grid-column:1;

    grid-row:1;

    text-align:left;

}


.logo img{

    width:110px;

}


/* WhatsApp Right */

.right-box{

    grid-column:2;

    grid-row:1;

    display:flex;

    justify-content:flex-end;

    width:100%;

}


.whatsapp a{

    display:inline-block;

    padding:8px 12px;

    font-size:13px;

    white-space:nowrap;

}


/* Time Left */

.time{

    grid-column:1;

    grid-row:2;

    text-align:left;

    font-size:13px;

}


/* Search Full Width */

.search-box{

    grid-column:1 / 3;

    grid-row:3;

    width:100%;

    max-width:none;

}


.search-box input{

    width:100%;

    height:40px;

    font-size:14px;

}


/* Search Button */

.search-box button{

    width:32px;

    height:32px;

    top:4px;

    right:5px;

    font-size:15px;

}

}
/*top end*/

/*=========================

.news-menu{

    background:#f10000;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 8px rgba(0,0,0,.15);

}

.menu-scroll{

    width:100%;

}

.menu-scroll ul{

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

    flex-wrap:wrap;

    list-style:none;

    margin:0;
    padding:0;

}


.menu-scroll ul li{

    display:block;

}


.menu-scroll ul li a{

    display:block;

    color:#fff;

    text-decoration:none;

    padding:15px 18px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

    white-space:nowrap;

}



.menu-scroll ul li a:hover{

    background:#fff;

    color:#c40000;

}



.menu-scroll ul li a.active{

    background:#fff;

    color:#c40000;

}


@media(max-width:768px){

.news-menu{

    position:relative;

}


.menu-scroll ul{

    justify-content:flex-start;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    width:100%;

}


.menu-scroll ul li{

    text-align:center;

    border-bottom:1px solid rgba(255,255,255,.25);

    border-right:1px solid rgba(255,255,255,.25);

}


.menu-scroll ul li a{

    padding:12px 8px;

    font-size:14px;

}


}



@media(max-width:400px){

.menu-scroll ul{

    grid-template-columns:1fr;

}


}
/*old scroll menu in mobile*/

/* NEWS MENU */

.news-menu{

    background:#f10000;
    position:sticky;
    top:0;
    z-index:999;
}


/* Mobile Header */

.menu-header{

    display:none;

    justify-content:space-between;
    align-items:center;

    padding:12px 15px;

    color:#fff;

    font-size:18px;
    font-weight:bold;

}


/* Hamburger Icon */

.menu-toggle{

    width:35px;
    cursor:pointer;

}


.menu-toggle span{

    display:block;

    height:3px;

    background:#fff;

    margin:6px 0;

    border-radius:5px;

}



/* Menu */

.menu-scroll ul{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    list-style:none;

    padding:0;
    margin:0;

}


.menu-scroll ul li a{

    display:block;

    color:#fff;

    text-decoration:none;

    padding:15px 18px;

    font-size:15px;

    font-weight:600;

}


.menu-scroll ul li a:hover,
.menu-scroll ul li a.active{

    background:#01386b;

    color:#fff;

}



/* MOBILE */

@media(max-width:768px){


.menu-header{

    display:flex;

}


.menu-scroll{

    display:none;

}


.menu-scroll.show{

    display:block;

}


.menu-scroll ul{

    display:block;

}


.menu-scroll ul li{

    border-bottom:1px solid rgba(255,255,255,.3);

}


.menu-scroll ul li a{

    text-align:center;

    padding:14px;

}


}
@media(max-width:768px){

.menu-header{

    display:flex;
    height:60px;   /* Mobile header height */
    padding:0 15px;

    justify-content:space-between;
    align-items:center;

}


.menu-scroll.show{

    display:block;

    max-height:450px; /* Menu open height */
    overflow-y:auto;

}


.menu-scroll ul li a{

    height:45px; /* Each menu item height */
    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

}

}
/*end*/

/*footer*/
.footer{

    font-family:Arial, sans-serif;

}

.footer-top{

    background:#01386b;
    color:#fff;
    padding:60px 0;

}

.container{

    max-width:1200px;
    margin:auto;
    padding:0 20px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;

}

.footer-logo{

    width:180px;
    margin-bottom:20px;

}

.footer-col h4{

    margin-bottom:20px;
    font-size:22px;

}

.footer-col p{

    line-height:28px;
    color:#f3f3f3;

}

.footer-col ul{

    list-style:none;
    padding:0;

}

.footer-col ul li{

    margin-bottom:12px;

}

.footer-col ul li a{

    color:#fff;
    text-decoration:none;
    transition:.3s;

}

.footer-col ul li a:hover{

    color:#ffe600;
    padding-left:6px;

}



.footer-bottom{

    background:#f10000;
    color:#bbb;
    text-align:center;
    padding:10px 5px;

}


@media(max-width:768px){

.footer-grid{

    grid-template-columns:1fr;
    text-align:center;

}

}
/*end*/

/*slider*/
/*======================================
NEWS HOME SLIDER
======================================*/

.carousel{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.slider-img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.carousel-caption{
    left:0;
    right:0;
    bottom:0;
    text-align:left;
    background:linear-gradient(to top, rgba(0,0,0,.9), transparent);
    padding:30px;
}

.carousel-caption h3{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin:0;
}

.carousel-control-prev,
.carousel-control-next{
    width:8%;
}

/*======================================
LATEST UPDATES
======================================*/

.latest-news{
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.latest-title{
    background:#c40000;
    color:#fff;
    padding:15px;
    text-align:center;
    font-size:22px;
    font-weight:bold;
    letter-spacing:.5px;
}

.news-scroll{
    height:440px;
    overflow:hidden;
    position:relative;
    background:#fff;
}

.news-scroll ul{
    margin:0;
    padding:0;
    list-style:none;
    animation:scrollUp 30s linear infinite;
}

.news-scroll:hover ul{
    animation-play-state:paused;
}

.news-scroll li{
    padding:15px;
    border-bottom:1px solid #eeeeee;
    transition:.3s;
    cursor:pointer;
    line-height:24px;
    font-size:15px;
}

.news-scroll li:hover{
    background:#f8f8f8;
    color:#c40000;
    padding-left:20px;
}

.news-scroll li:last-child{
    border-bottom:none;
}
.news-scroll a {
    color: #000 !important;
    text-decoration: none;
}

.news-scroll a:hover {
    color: #d60000 !important;
}

/*======================================
SCROLL ANIMATION
======================================*/

@keyframes scrollUp{

0%{
    transform:translateY(0);
}

100%{
    transform:translateY(-50%);
}

}

/*======================================
RESPONSIVE
======================================*/

@media (max-width:991px){

.slider-img{
    height:350px;
}

.news-scroll{
    height:350px;
}

.carousel-caption{
    padding:20px;
}

.carousel-caption h3{
    font-size:22px;
}

.latest-title{
    font-size:20px;
}

}

@media (max-width:767px){

.slider-img{
    height:250px;
}

.news-scroll{
    height:250px;
    margin-top:20px;
}

.carousel-caption{
    padding:15px;
}

.carousel-caption h3{
    font-size:18px;
}

.news-scroll li{
    font-size:14px;
    padding:12px;
}

.latest-title{
    font-size:18px;
}

}
/*end*/


.latest-news-area{
    padding:60px 0;
    background:#f8f8f8;

}

.title-box{

    border-left:5px solid #d40000;
    padding-left:15px;
    margin-bottom:30px;

}

.title-box h2{

    font-size:34px;
    font-weight:700;
    margin:0;

}

.featured-news{

    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.featured-news img{

    width:100%;
    height:400px;
    object-fit:cover;
    display:block;

}

.featured-content{

    padding:20px;

}

.featured-content span{

    background:#d40000;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;

}

.featured-content h3{

    margin:15px 0;
    font-size:28px;
    line-height:40px;

}

.featured-content a{

    color:#d40000;
    text-decoration:none;
    font-weight:bold;

}

.news-list{

    display:flex;
    flex-direction:column;
    gap:18px;

}
.news-link span
{
   color: #f10000 !important; 
}
.news-link h5,
.news-link small {
    color: #000 !important;
    font-weight: 600;
}

.news-item{

    display:flex;
    gap:15px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    padding:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
    transition:.3s;

}

.news-item:hover{

    transform:translateY(-4px);

}

.news-item img{

    width:140px;
    height:100px;
    object-fit:cover;
    border-radius:8px;
    display:block;
    flex-shrink:0;

}

.news-item span{

    color:#d40000;
    font-size:12px;
    font-weight:700;

}

.news-item h5{

    margin:8px 0;
    font-size:18px;
    line-height:28px;

}

.news-item small{

    color:#888;

}

/* Mobile */

@media(max-width:768px){

.latest-news
{
    margin-top: 20px;
}
.latest-news-area{
padding:40px 15px;

}

.title-box h2{

font-size:26px;

}

.featured-news{

margin-bottom:25px;

}

.featured-news img{

height:240px;

}

.featured-content h3{

font-size:22px;
line-height:32px;

}

.news-item{

flex-direction:column;

}

.news-item img{

width:100%;
height:220px;

}

.news-item h5{

font-size:17px;

}

}
/*end*/

/*=========================
Floating Social Sidebar
=========================*/

.social-sidebar{

    position:fixed;

    top:50%;

    right:15px;

    transform:translateY(-50%);

    z-index:9999;

}

.social-sidebar a{

    display:flex;

    align-items:center;

    justify-content:center;

    width:35px;

    height:35px;

    margin:10px 0;

    border-radius:50%;

    color:#fff;

    text-decoration:none;

    font-size:18px;

    box-shadow:0 6px 20px rgba(0,0,0,.25);

    transition:all .3s ease;

}

.social-sidebar a:hover{

    transform:translateX(-8px) scale(1.1);

}

/* Colors */


.facebook{
    background:#1877F2;
}

.instagram{
    background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.youtube{
    background:#FF0000;
}

.twitter{
    background:#000;
}

.telegram{
    background:#229ED9;
}

.whatsapp-channel{
    background:#25D366;
    color:#fff;
}

.whatsapp-channel:hover{
    background:#1ebe5d;
}
/* Mobile */

@media(max-width:768px){

.social-sidebar{

    right:8px;

}

.social-sidebar a{

    width:45px;

    height:45px;

    font-size:18px;

    margin:8px 0;

}

}
/* Mobile Social Sidebar Bottom View */

@media(max-width:768px){

.social-sidebar{

    position:fixed;

    bottom:15px;

    left:50%;

    right:auto;

    top:auto;

    transform:translateX(-50%);

    display:flex;

    flex-direction:row;

    gap:8px;

    z-index:9999;

}


.social-sidebar a{

    width:36px;

    height:36px;

    margin:0;

    font-size:16px;

    border-radius:50%;

    box-shadow:0 3px 10px rgba(0,0,0,.25);

}


.social-sidebar a:hover{

    transform:translateY(-5px) scale(1.05);

}

}
/*end*/

/*latest new pop*/
.news-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.8);
    z-index:99999;
}

.popup-box{
    position:relative;
    width:700px;
    max-width:95%;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
}

.popup-video iframe{
    width:100%;
    height:400px;
}

.close-btn{

    position:absolute;

    top:10px;
    right:10px;

    width:40px;
    height:40px;

    background:#ff0000;
    color:#fff;

    border-radius:50%;

    text-align:center;
    line-height:40px;

    font-size:28px;

    cursor:pointer;

    z-index:999999;
}
/*end*/


/*contact us page*/
.contact-section {

   width: 85%;          /* More side space */
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;    /* Extra inner spacing */

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

}


/* Left Content */

.contact-content {

    background: #fff;
    padding: 40px;

    border-left: 5px solid #d00000;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);

}


.contact-content h1 {

    font-size: 42px;
    color:#d00000;

    margin-bottom:15px;

}


.contact-content p {

    color:#555;
    line-height:1.6;

}


.contact-details {

    margin-top:30px;

}


.detail-box {

    margin-bottom:20px;

}


.detail-box h3 {

    color:#d00000;

    margin-bottom:8px;

}



/* Form */

.contact-form {

    background:#01386b;

    padding:40px;

    color:white;

    border-radius:10px;

}


.contact-form h2 {

    margin-bottom:25px;

}


.contact-form input,
.contact-form textarea {


    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:none;

    border-radius:5px;

    font-size:15px;

}


.contact-form textarea {

    height:130px;

    resize:none;

}


.contact-form button {


    width:100%;

    padding:15px;

    background:#d00000;

    color:white;

    border:none;

    border-radius:5px;

    font-size:17px;

    cursor:pointer;

}


.contact-form button:hover {

    background:#a00000;

}



/* Mobile Responsive */

@media(max-width:768px){


.contact-section {

    grid-template-columns:1fr;

    width:92%;

}


.contact-content,
.contact-form {

    padding:25px;

}


.contact-content h1 {

    font-size:32px;

}


}


@media(max-width:480px){


.contact-content h1 {

    font-size:26px;

}


.contact-form h2 {

    font-size:22px;

}


}
/*end*/

/*map*/
.maps-section {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 50px 30px;
    background: #f4f4f4;
    border-radius: 10px;
}


.maps-container {

    display: flex;
    gap: 30px;
    width: 100%;

}


.map-column {

    width: 50%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;

}


.map-column h3 {

    text-align: center;
    color: #d00000;
    margin-bottom: 15px;

}


.map-column iframe {

    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 8px;

}


/* Mobile View */

@media(max-width:768px){

    .maps-container {

        flex-direction: column;

    }


    .map-column {

        width:100%;

    }


    .map-column iframe {

        height:280px;

    }

}
/*end*/


/*founder*/
.founder-section{

    padding:80px 5%;
    background:#f8f8f8;

}


.founder-container{

    max-width:1200px;
    margin:auto;

    display:flex;

    align-items:center;

    gap:60px;

}



/* Image */

.founder-image{

    width:45%;

    position:relative;

}


.founder-image img{

    width:100%;

    height:auto;

    object-fit:cover;

    border-radius:15px;

    box-shadow:0 15px 30px rgba(0,0,0,0.15);

}



/* Content */

.founder-content{

    width:55%;

}


.founder-content span{

    color:#d00000;

    font-weight:bold;

    letter-spacing:2px;

    font-size:14px;

}


.founder-content h1{

    font-size:42px;

    margin:15px 0;

    color:#222;

}


.founder-content h3{

    color:#d00000;

    font-size:22px;

    margin-bottom:20px;

}


.founder-content p{

    color:#555;

    line-height:1.8;

    margin-bottom:15px;

    font-size:17px;

}



/* Button */

.founder-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 35px;

    background:#d00000;

    color:white;

    text-decoration:none;

    border-radius:30px;

    font-weight:bold;

    transition:.3s;

}


.founder-btn:hover{

    background:#222;

}



/* Mobile */

@media(max-width:768px){


    .founder-container{

        flex-direction:column;

        gap:30px;

    }


    .founder-image,
    .founder-content{

        width:100%;

    }


    .founder-image img{

        height:380px;

    }


    .founder-content h1{

        font-size:32px;

    }


}
/*end*/

/*==========================
 FLASH NEWS BAR
==========================*/

.flash-bar{

    display:flex;

    align-items:center;

    background:#111;

    color:#fff;

    height:45px;

    overflow:hidden;

    margin-top: 20px;

}


/* Flash Title */

.flash-title{

    background:#e00000;

    padding:12px 18px;

    font-weight:bold;

    white-space:nowrap;

}


/* Marquee */

.flash-marquee{

    flex:1;

    font-size:15px;

    font-weight:600;

}


.flash-marquee marquee{

    line-height:45px;

}


/* Date Time */

.date-time{

    display:flex;

    gap:15px;

    padding:0 15px;

    font-size:14px;

    font-weight:bold;

    white-space:nowrap;

}
.ticker-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ticker-link:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Mobile */

@media(max-width:768px){

.flash-bar{

    height:auto;

    flex-wrap:wrap;

}


.flash-title{

    width:100%;

    text-align:center;

}


.flash-marquee{

    width:100%;

}


.date-time{

    width:100%;

    justify-content:center;

    padding:8px;

    background:#222;

    font-size:12px;

}

}
/* FLASH NEWS BLINK EFFECT */

.flash-title{

    background:#e00000;

    padding:12px 18px;

    font-weight:bold;

    white-space:nowrap;

    animation:flashBlink 1s infinite;

}


@keyframes flashBlink{

    0%{
        opacity:1;
    }

    50%{
        opacity:0.3;
    }

    100%{
        opacity:1;
    }

}

/* FLASH NEWS MARQUEE */

.flash-marquee{

    flex:1;

    overflow:hidden;

    white-space:nowrap;

}


.flash-text{

    display:inline-block;

    padding-left:100%;

    animation:newsMove 20s linear infinite;

    font-size:15px;

    font-weight:600;

}


@keyframes newsMove{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-100%);

    }

}


/* Mobile */

@media(max-width:768px){

.flash-bar{

    display:flex;

    flex-wrap:wrap;

}


.flash-marquee{

    width:100%;

    flex:none;

    height:40px;

    line-height:40px;

}


.flash-text{

    font-size:14px;

    animation-duration:18s;

}

}
/*end*/

/* About Us Section */

:root {
    --primary-color: #1f2937;     /* Dark newspaper header */
    --secondary-color: #e63946;   /* Accent red */
    --light-bg: #fff;
    --text-color: #333;
    --white: #01386b;
}

.about-section {
    padding: 70px 8%;
    background: var(--light-bg);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}


/* Image */

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}


/* Content */

.about-content {
    flex: 1;
}

.about-content h2 {
    color: var(--secondary-color);
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 12px;
}

.about-content h3 {
    color: var(--primary-color);
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* Statistics Boxes */

.about-boxes {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.box {
    background: var(--white);
    padding: 20px;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    flex: 1;
    transition: 0.3s;
}

.box:hover {
    transform: translateY(-5px);
}

.box h4 {
    font-size: 30px;
    color: var(--light-bg);
    margin-bottom: 8px;
    font-weight: 600;
}

.box span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
/* Responsive */

@media(max-width: 900px) {

    .about-container {
        flex-direction: column;
    }

    .about-content h3 {
        font-size: 28px;
    }

    .about-boxes {
        flex-direction: column;
    }
}
.founder-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #f10000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.founder-btn:hover {
    background: #01386b;
    color: #fff;
}
/*end*/

/* ===========================
   Common Careers Section Styles
=========================== */

.career-section{
    padding:80px 0;
    background:#fff;
}

.career-section.gray{
    background:#f7f8fc;
}

.career-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Section Heading */

.career-title{
    font-size:42px;
    font-weight:700;
    color:#1d2939;
    text-align:center;
    margin-bottom:15px;
}

.career-subtitle{
    max-width:720px;
    margin:0 auto 60px;
    text-align:center;
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
}

/* ===========================
   Cards
=========================== */

.career-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.career-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #e30613;
}

.career-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.career-card h3{
    margin:20px 0 15px;
    color:#1d2939;
    font-size:22px;
}

.career-card p{
    color:#666;
    line-height:1.7;
}

.career-icon{
    width:70px;
    height:70px;
    background:#e30613;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:30px;
}

/* ===========================
   Job Cards
=========================== */

.job-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.job-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.job-card:hover{
    transform:translateY(-5px);
}

.job-info h3{
    color:#e30613;
    margin-bottom:8px;
}

.job-info p{
    color:#666;
    line-height:1.7;
}

.job-btn{
    padding:12px 30px;
    background:#e30613;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.job-btn:hover{
    background:#1d2939;
}

/* ===========================
   Benefits
=========================== */

.benefits{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.benefit{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    font-weight:600;
    color:#1d2939;
}

/* ===========================
   Timeline
=========================== */

.timeline{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.timeline-item{
    background:#fff;
    text-align:center;
    padding:35px 25px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.timeline-number{
    width:65px;
    height:65px;
    margin:auto auto 20px;
    background:#e30613;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:bold;
}

.timeline-item h4{
    margin-bottom:10px;
    color:#1d2939;
}

.timeline-item p{
    color:#666;
    line-height:1.7;
}

/* ===========================
   CTA
=========================== */

.career-cta{
    background:#1d2939;
    color:#fff;
    text-align:center;
    padding:80px 20px;
    border-radius:20px;
}

.career-cta h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
}

.career-cta p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    opacity:.9;
}

.career-btn{
    display:inline-block;
    margin-top:35px;
    padding:14px 40px;
    background:#e30613;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.career-btn:hover{
    background:#fff;
    color:#1d2939;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:768px){

    .career-title{
        font-size:32px;
    }

    .job-card{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .career-subtitle{
        margin-bottom:40px;
    }
}

/*career end*/



/*home page gallery*/
.gallery-title{
    font-size:32px;
    font-weight:700;
    color:#d60000;
    margin:0;
}

.gallery-btn{
    background:#013769;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
}

.gallery-btn:hover{
    color:#fff;
    background:#f10000;
}

.gallery-item{
    overflow:hidden;
    border-radius:10px;
}

.gallery-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    transition:0.4s;
    display:block;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

@media(max-width:768px){
    .gallery-item img{
        height:150px;
    }

    .gallery-title{
        font-size:24px;
    }
}
/*gallery end*/



/*sports start*/
.sports-date{
    font-size:14px;
    font-weight:600;
    color:#fff;
    background:#01386b;
    padding:8px 15px;
    border-radius:30px;
    border:1px solid #e5e5e5;
}

.sports-date i{
    color:#d60000;
    margin-right:5px;
}

.sports-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.sports-item{
    display:flex;
    gap:12px;
    align-items:center;
    background:#fff;
    padding:10px;
    border:1px solid #eee;
    border-radius:8px;
    transition:.3s;
}

.sports-item:hover{
    box-shadow:0 4px 15px rgba(0,0,0,.1);
}

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

.sports-content h6{
    margin:0 0 5px;
    font-size:15px;
    line-height:1.4;
}

.sports-content small{
    color:#777;
}
/*end*/


/*business page*/
.business-date{
    font-size:14px;
    font-weight:600;
    color:#fff;
    background:#01386b;
    padding:8px 15px;
    border-radius:30px;
    border:1px solid #e5e5e5;
}

.business-date i{
    color:#d60000;
    margin-right:5px;
}

.business-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.business-item{
    display:flex;
    gap:12px;
    align-items:center;
    background:#fff;
    padding:10px;
    border:1px solid #eee;
    border-radius:8px;
    transition:.3s;
}

.business-item:hover{
    box-shadow:0 4px 15px rgba(0,0,0,.1);
}

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

.business-content h6{
    margin:0 0 5px;
    font-size:15px;
    line-height:1.4;
}

.business-content small{
    color:#777;
}
/*end*/


/*common css*/
.view-more-link{
    color:#01386b;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}

.view-more-link:hover{
    color:#d60000;
}
/*end*/

/*live tv*/
.live-tv-floating{
    position:fixed;
    right:20px;
    bottom:100px;
    z-index:9999;
    background:#01386b;
    color:#fff;
    padding:10px 12px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
    animation:floatLive 2s infinite;
}
.live-dot{
    width:12px;
    height:12px;
    background:#f10000;
    border-radius:50%;
    display:inline-block;
    margin-right:8px;
    animation:liveBlink 1.5s infinite;
}

@keyframes liveBlink{
    0%{
        box-shadow:0 0 0 0 rgba(241,0,0,0.8);
        opacity:1;
    }
    70%{
        box-shadow:0 0 0 12px rgba(241,0,0,0);
        opacity:0.8;
    }
    100%{
        box-shadow:0 0 0 0 rgba(241,0,0,0);
        opacity:1;
    }
}
/*end*/

/*charithra page*/

 .history-section{
    background:#f8f9fa;
}

.history-logo-box{
    text-align: center;
    margin-bottom: 20px;
}

.history-logo{
    width: 100%;
    max-width: 340px;
    height: auto;
    display: inline-block;
    padding: 2px;
    background: #01386b;
    border-radius: 12px;
    border: 1px solid #01386b;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: all .4s ease;
}

.history-logo:hover{
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,.20);
}

/* Mobile */

@media (max-width:768px){

    .history-logo{
        max-width: 260px;
    }

}

.title-line{
    width:90px;
    height:3px;
    background:#c00000;
    border-radius:10px;
}

.history-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
    border:1px solid #eee;
}

.history-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.history-img{
    width:100%;
    height:150px;
    object-fit:cover;
}

.history-card h5{
    font-size:18px;
    line-height:26px;
}

.history-card p{
    line-height:22px;
}

@media(max-width:767px){

.history-img{
    height:120px;
}

.history-card h5{
    font-size:16px;
}

}
/*charithra end*/

