/* Banner Container */
.banner-container 
{
  background-color: #c30e2e;
  color: white;
  height: 150px;
  display: flex;
  justify-content: space-between; /* Ensure the logos are spaced out */
  align-items: center;
  position: relative;
  width: 100%;
}

/* Left and Right Logos */
.banner-logo 
{
  height: 100%; /* Ensure logos take up full height */
  width: auto;
}

.left-logo 
{
  margin-right: 0; /* Remove space before the left logo */
}

.right-logo 
{
  margin-left: 0; /* Remove space after the right logo */
}

/* Banner Text */
.banner-text 
{
  font-size: 2rem;
  font-weight: bold;
  z-index: 1;
  text-align: center;
  width: auto;
  flex-grow: 1; /* Allow text to grow and take available space */
  box-sizing: border-box;
  padding: 5px 5px 5px 60px; /* Allow space for logos */
  margin-top: 5px;
  margin-bottom: 5px;
}

nav a i
{
  font-size: 1.25rem;
  width: auto;
  flex-grow: 1; /* Allow text to grow and take available space */
  box-sizing: border-box;
}

nav li a
{
  font-size: 1.25rem;
  width: auto;
  flex-grow: 1; /* Allow text to grow and take available space */
  box-sizing: border-box;
}

/* Navbar Styles */
.navbar-custom {
  background-color: #0e2240;
  font-size: large;
  font-weight: bold;
}

.navbar-custom .navbar-brand, .navbar-custom .nav-link 
{
  color: white !important;
}

/* Navbar Toggler Button */
.navbar-toggler 
{
  background-color: #c30e2e; /* Red background for the collapsed button */
  padding: 0.5rem 1.5rem;
  margin-bottom: 10px;
}

.section-title 
{
  margin-bottom: 20px;
}

.navbar-toggler-icon 
{
  background-image: none; /* Remove default background (stripes) */
  color: white; /* Text color */
  font-size: 16px; /* Font size for the text */
  font-weight: bold; /* Bold text */
  text-transform: uppercase; /* Capitalize text */
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Horizontally center the text */
  align-items: center; /* Vertically center the text */
  width: 100%;
  height: 100%; /* Make the button take full height */
  text-align: center; /* Center the text */
}


    
/* Main Content */
.featured-image 
{
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

.news-section 
{
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  max-height: 850px;
  overflow-y: auto; 
}

.section-title 
{
  margin-bottom: 20px;
}

.featured-image 
{
  max-height: 600px;
  object-fit: cover;
  border-radius: 8px;
}

marquee
{
  margin-bottom: 15px; 
  color: #c30e2e; 
  font-size:x-large;
}

ol li 
{
  font-size: large;
  margin-top: 15px;
}

mark 
{
  background-color: yellow; 
  color:black;
}

.li-cus 
{
  font-size: large;
}

.li-a-cus 
{
  font-size: large;
  color: blue;
}

li 
{
  font-size: large;
}

li::marker 
{
  color: #c30e2e;
}

/* Custom active class for selected navigation item */
.nav-item
{
  white-space: nowrap;
}

.navbar-nav .nav-link {
    padding: 10px 20px;  /* top-bottom: 10px, left-right: 20px */
}

.navbar-nav .nav-item .active 
{
  background-color: #c30e2e; /* Change background color to red when active */
  color: white; /* Ensure the text remains white */
}

.nav .nav-item .active 
{
  background-color: #c30e2e; /* Change background color to red when active */
  color: white; /* Ensure the text remains white */
}

.navbar-nav .nav-item .active .nav-link 
{
  color: white; /* Change the link text color to white */
}

.navbar-nav .nav-item:hover 
{
  background-color: #c30e2e;
}

.nav .nav-item:hover 
{
  background-color: #c30e2e;
}


@media (max-width: 1200px) 
{
  .navbar-brand {
    font-size: 1.1rem; /* Slightly smaller text for large tablets */
  }

  .navbar-nav .nav-link {
    padding: 10px 20px;  /* top-bottom: 10px, left-right: 20px */
  }
}

@media (max-width: 992px) 
{
  .navbar-brand {
    font-size: 0.9rem; /* Smaller text for tablets */
  }

  .navbar-nav .nav-link {
    padding: 10px 20px;  /* top-bottom: 10px, left-right: 20px */
  }

  .banner-logo {
    max-height: 100%;
    max-width: 120px;
    margin: 5px 0;
  }

  .banner-text {
    font-size: 1rem;
  }

  nav a i {
    font-size: 0.9rem;
  }

  nav li a {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) 
{
  .navbar-brand {
    font-size: 0.9rem; /* Even smaller text for medium screens */
  }

  .navbar-nav .nav-link {
    padding: 10px 20px;  /* top-bottom: 10px, left-right: 20px */
  }

  .banner-logo {
    max-height: 100%;
    max-width: 120px;
    margin: 5px 0;
  }

  .banner-text {
    font-size: 1rem;
  }

  nav a i {
    font-size: 0.8rem;
  }

  nav li a {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) 
{
  .navbar-brand {
    font-size: 0.85rem; /* Smallest text for mobile screens */
  }

  .navbar-nav .nav-link {
    padding: 10px 20px;  /* top-bottom: 10px, left-right: 20px */
  }

  .banner-logo {
    max-height: 100%;
    max-width: 120px;
  }

  .banner-text {
    font-size: 1rem;
    padding: 0 5px;
  }

  nav a i {
    font-size: 0.6rem;
  }

  nav li a {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) 
{
  .banner-logo {
    max-height: 100%;
    max-width: 120px;
  }

  .navbar-nav .nav-link {
    padding: 10px 20px;  /* top-bottom: 10px, left-right: 20px */
  }

  .banner-text {
    font-size: 1rem;
  }

  nav a i {
    font-size: 0.6rem;
  }

  nav li a {
    font-size: 0.7rem;
  }
}