/* 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;
}





.container {
  max-width: 100% !important;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Gradient background for the section */
.custom-gradient {
  background: linear-gradient(to right, #67a282, #fefcea); 
  padding: 50px 0;
}

/* Card styling */
.card {
  border-radius: 12px;              /* Rounded corners */
  overflow: hidden;                 /* Ensures images respect rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #aae0c2;
}

/* Card hover effect */
.card:hover {
  transform: translateY(-8px);      /* Lift effect */
  box-shadow: 0 12px 24px rgba(0,0,0,0.15); /* Stronger shadow */
}

/* Card images */
.card-img-top {
  border-bottom: 1px solid #eee;    /* Subtle divider */
}

/* Card body text */
.card-body {
  background: #ffffffcc;            /* Slight transparency for elegance */
  backdrop-filter: blur(4px);       /* Soft blur effect */
  padding: 20px;
}

/* Headings inside cards */
.card-body h5 {
  color: #2e7d32;                   /* Deep green for contrast */
}

/* Paragraph text */
.card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
}





.h4, h4 {
  -webkit-text-stroke-color: #ffffff;
  -webkit-text-stroke-width: thin;
}






















.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 */
}
