/* ===========================
   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:150px;
}

}

@media(max-width:576px){

.right-box{
    flex-direction:column;
    gap:12px;
}

.search-box input{
    height:42px;
}

.whatsapp a{
    width:100%;
    display:block;
    text-align:center;
}

.logo img{
    width:140px;
}

}
/**/
/*=========================
    NEWS MENU
=========================*/

.news-menu{

    background:#f10000;
    position:sticky;
    top:0;
    z-index:999;

    box-shadow:0 2px 8px rgba(0,0,0,.15);

}

/* Mobile Scroll */

.menu-scroll{

    overflow-x:auto;
    overflow-y:hidden;
    white-space:nowrap;

    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;

}

.menu-scroll::-webkit-scrollbar{
    display:none;
}

/* Menu */

.menu-scroll ul{

    display:flex;
    align-items:center;

    list-style:none;

    margin:0;
    padding:0;

    min-width:max-content;

}

.menu-scroll ul li{

    flex:0 0 auto;

}

.menu-scroll ul li a{

    display:block;

    color:#fff;

    text-decoration:none;

    padding:16px 20px;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

/* Hover */

.menu-scroll ul li a:hover{

    background:#ffffff;
    color:#c40000;

}

/* Active */

.menu-scroll ul li a.active{

    background:#ffffff;
    color:#c40000;

}

/* Desktop */

@media(min-width:992px){

.menu-scroll{

    overflow:visible;

}

.menu-scroll ul{

    justify-content:center;

}

}

/*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;
}

/*======================================
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-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-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:52px;

    height:52px;

    margin:10px 0;

    border-radius:50%;

    color:#fff;

    text-decoration:none;

    font-size:22px;

    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;
}

/* Mobile */

@media(max-width:768px){

.social-sidebar{

    right:8px;

}

.social-sidebar a{

    width:45px;

    height:45px;

    font-size:18px;

    margin:8px 0;

}

}
/*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*/