.blood-red-navbar {
    background-color: #D3D3D3; /* Blood red color */
    /* Add any additional styling you need */
}
.navbar-nav .nav-link:hover {
    color: #FF0000 !important; /* Change color on hover */
}
.main-menu {
    text-align: right;
}

.navbar-toggler {
    float: none;
    margin-left: auto;
}

    /* Custom CSS for logo and navigation bar */
    .logo-area img {
        width: 100%; /* Set width to 100% for automatic resizing */
        max-width: 150px; /* Set max-width to maintain aspect ratio and limit size */
        height: auto; /* Maintain aspect ratio */
    }

 /* For Marquee */
.latest-news-marquee-area {
    overflow: hidden;
    position: relative;
    height: 60px; /* Adjust height as needed */
}

.simple-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(-100%); } /* Change from 100% to -100% */
    to { transform: translateX(100%); }   /* Change to 100% to -100% */
}

.marquee {
    animation-play-state: running; /* Initially, animation is running */
}

.marquee:hover {
    animation-play-state: paused; /* Animation paused on hover */
}

.marquee-content-items {
    display: inline-block;
    padding: 0;
    margin: 0;
    
    list-style-type: none;
}

.marquee-content-items li {
    display: inline-block;
    margin-right: 20px; /* Adjust spacing between items */
    font-weight: normal; /* Make the text unbold */
    color: #777; /* Set a lighter color */
}

.marquee-content-items li:last-child {
    margin-right: 0;
}

.latest-news-time {
    font-weight: bold;
}

body {
    font-family: "Gadugi", sans-serif;
    font-size: 10pt;
}
.welcome-blog-post-slide {
    height: 80vh; /* Adjust the percentage as needed */
}

