/* Header top css  */

/* .header-top {
    overflow: hidden;
    padding-bottom: 15px;
    padding-top: 15px !important;
}
 */
/* .news-container ul {
    display: flex;
    list-style: none;
    justify-content: center;
    animation: scroll 30s infinite linear;
}


.news-container ul li {
    white-space: nowrap;
    padding: 0 30px;
    color: #000;
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-1400px);
    }
} */

/* .news-container ul {
    display: flex;
    list-style: none;
    justify-content: center;
    animation: scroll 45s infinite linear;    margin: 0;
    padding: 0;
}
 */
.news-container ul:hover {
    animation-play-state: paused; 
}
/* 
.news-container ul li {
    white-space: nowrap;
    padding: 0 30px;
    color: #000;
    list-style-type: disc;
    padding-left: 0;
    padding-right: 30px;
} */


/* .news-container ul li {
    white-space: nowrap;
    color: #fff;
    list-style-type: disc;
    padding-left: 50px;
    padding-right: 70px;
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-1400px);
    }
} */

/* Ticker Container */
.news-container {
	width: 100%;
	overflow: hidden;
	color: white;
	padding: 0;
	white-space: nowrap;
	position: relative;
	display: flex;
	align-items: center;
}

/* Moving content */
.news-container ul {
	margin:0;
	display: flex;
	width: max-content;
	animation: ticker 30s linear infinite;
}

/* Each news item */
.news-container ul li p {
	margin: 0;
	font-size: 18px;

}

/* Keyframes for Perfect Loop */
@keyframes ticker {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); } /* Moves exactly half for seamless repeat */
}


.news-container ul li p{color:#fff;font-weight:500;margin:0;padding-bottom:10px;padding-top:10px}
.news-container ul li {
    padding-left: 60px;
    padding-right: 60px;
}