a {
    color: #31337f;
}
a:hover {
    color: #31337f;
}
.header{
    box-shadow: 0px 0px 5px 0px #bfbfbf;
}
header.fixed{
    background-color: #f70001 !important;
}
header.fixed a {
    color: #fff;
}
header.fixed .nav .nav-item .nav-link{
    color: #fff;
}

header.fixed .nav .nav-item .nav-link.active, header .nav .nav-item .nav-link:hover {
    color: #31337f;
}
.breadcrumb-item a{
    color: #31337f;
}
.breadcrumb-item.active{
    color: #f70001;
}
.top-bar-section{
    background: #efefef;
}
.text-secondary{
    color: #31337f !important;
}
header .nav .nav-item .nav-link, header .nav .dropdown .dropdown-nav a, .top-bar-section .language-dropdown .nav-link{
    color: #31337f;
}
.voting-poll .progress-bar{
    background-color: #31337f;
}
.footer-logo, .top-bar-logo {
    height: 100px;
}
 /* Main ticker container styling */
 .news-ticker {
    display: flex;
    align-items: center;
    background-color: #000; /* Background color for entire ticker */
    height: 50px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Red boxes on both sides with "Breaking" text */
.breaking-box {
    background-color: red;
    color: white;
    font-weight: bold;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Scrolling text container */
.scrolling-text-container {
    width: 100%; /* Full width */
    background-color: black;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

/* Actual scrolling text */
.scrolling-text {
    display: inline-block;
    color: white;
    font-size: 18px;
    padding-left: 100%; /* Starts outside */
    animation: scroll linear infinite;
    animation-duration: 120s; /* Fixed speed */
}

/* Pause on hover */
.scrolling-text:hover {
    animation-play-state: paused;
}
.position-absolute-desktop{
    position: absolute;
}
.top-bar-logo{
    text-align: center;
}
.top-search-icon{
    width: 75px;
} 
.footer-social-icon a{
    font-size: 26px;
}
.home-side-container{
    position: relative;
}
#home-side-menu{
    transition: top 1s;
}
.social-img-icon{
    width: 20px;
    height: 20px;
    vertical-align: text-top;
}
.social-footer-img-icon{
    width: 26px;
    height: 26px;
    vertical-align: text-top;
}
.home-page .carousel .text-white{
    text-shadow: 1px 1px 4px #000;
}
header .nav .dropdown .dropdown-nav.sub-sub-menu{
    display: none;
    left: 100%;
    position: absolute;
    top: 0;
}
header .nav .dropdown .dropdown-nav li a{
    line-height: 20px;
}
header .nav .dropdown .dropdown-nav li.have-sub-sub-menu{
    position: relative;
    padding: 8px 15px;
}
header .nav .dropdown .dropdown-nav li.have-sub-sub-menu:hover{
    background-color: #eee;
}
header .nav .dropdown .dropdown-nav li.have-sub-sub-menu:hover > .sub-sub-menu{
    display: block;
}

@media (max-width: 991px) {
    .top-bar-logo{
        text-align: left;
    }
    .position-absolute-desktop{
        left: 0;
    }
}
@media (max-width: 500px) {
    .right-breaking-box{
        display: none;
    }
}
@media (max-width: 767px) {
    .top-bar-logo{
        text-align: center;
    }
    .position-absolute-desktop{
        position: static;
        height: 50px;
    }
    .top-social-date{
        position: absolute;
        width: 100%;
        text-align: center !important;
    }
    .top-search-icon {
        position: absolute;
        right: 15px;
    }
}

/* Scrolling animation */
@keyframes scroll {
    from {
        transform: translateX(0); /* Start at the right edge */
    }
    to {
        transform: translateX(-100%); /* Move to the left edge */
    }
}