/* Top navbar overall */
.top-navbar {
  padding: 0;
  background-color: transparent !important; /* remove default dark background */
  background-image: none !important;        /* remove Bootstrap gradient */
}

/* Brand section transparent */
.top-navbar .brand-section {
  background-color: transparent !important;
  padding: 5px 15px;
}

.top-navbar .navbar-brand img {
  height: 100px;
  width: 100px;
  border-radius: 5px;
}

/* Nav section with solid background */
.top-navbar .nav-section {
  background-color: #67a282 !important;
  padding: 0 15px;
  width: 100%; /* full width */
}

/* Make nav items stretch evenly */
.top-navbar .navbar-nav {
  display: flex;
  justify-content: space-between; /* distribute items */
  width: 100%;
}



/* Nav links */
.top-navbar .navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 1rem;
  padding: 10px 20px;
  text-align: center;
}

.top-navbar .navbar-nav .nav-link:hover {
  background-color: #eff1f0;
  border-radius: 5px;
  color: #67a282 !important;
}


h1 {
  color:#67a282
}


h2 {
color: #000000;

}

p {
  padding: 5px;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: #c7f8cf !important;
}




 body {
      position: relative; 
  }

    /* Custom gradient for navbar */
    .navbar-gradient {
      background: linear-gradient(180deg, #c2eab8, #67a282); /* Blue to purple */
      border-bottom-left-radius: 50px;
      border-bottom-right-radius: 50px;
      padding-left: 5px;
    }

    /* Optional: smooth text color */
    .navbar-gradient .nav-link {
      color: rgb(0, 0, 0) !important;
      -webkit-text-stroke-color: rgb(0, 0, 0);
      -webkit-text-stroke-width: thin;
      
    }
    .navbar-gradient .nav-link:hover {
      color: #00c010 !important; /* Highlight on hover */
    }


      /* Custom card image styling */
      .card-img-top {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        object-fit: contain; /* Prevent cropping */
        max-height: 300px; /* Limit height for smaller screens */
      }

      /* Adjust card spacing */
      .card {
        margin-bottom: 20px;
        background-color: #aae0c2;
      }

      /* Responsive text alignment */
      @media (max-width: 576px) {
        h1 {
          font-size: 1.5rem;
        }
        .card-body h5 {
          font-size: 1rem;
        }
      }








.bottom-navbar{
 background-color: #67a282 !important;
}

.navbar-brand img {
  height: 100px;   /* adjust height */
  width: 100px;    /* keep aspect ratio */
  border-radius: 5px; /* optional rounded corners */
}


/* Make nav items stretch across the screen */
.navbar-nav {
  display: flex;
  justify-content: space-between; /* distributes items evenly */
  width: 100%; /* full width of navbar */
}

/* Style each nav item */
.navbar-nav .nav-item {
  flex: 1; /* each item takes equal space */
  text-align: center; /* center the text inside */
}
