.page-title, .banner, .inner-banner {
  background: linear-gradient(135deg, #21c4a7, #1aa88d);
  color: #ffffff;
}
#navmenu ul li a {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #333 !important;          /* default dark text */
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

#navmenu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #21c4a7;             /* brand color underline */
  transition: width 0.3s ease;
}

#navmenu ul li a:hover,
#navmenu ul li a.active {
  color: #21c4a7 !important;       /* brand color on hover/active */
}

#navmenu ul li a:hover::after,
#navmenu ul li a.active::after {
  width: 100%;
}
/* ========================= */

/* Tablet view */
@media (max-width: 992px) {
  #navmenu ul {
    justify-content: flex-start;   /* align left */
    padding-left: 10px;
  }
  #navmenu ul li a {
    font-size: 14px;
    padding: 8px 10px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  #navmenu ul {
    flex-direction: column;        /* stack menu items */
    align-items: flex-start;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  }
  #navmenu ul li {
    display: block;
    width: 100%;
  }
  #navmenu ul li a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    margin: 4px 0;
    border-radius: 6px;
  }
  #navmenu ul li a:hover {
    background: rgba(33,196,167,0.1);
  }
}
.team-member .member-img img {
  width: 100%;
  height: 300px;   /* set fixed height */
  object-fit: cover; /* crop image nicely */
  border-radius: 8px;
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Loader container */
#loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background: #ffffff; /* change background if needed */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

/* Logo Animation */
.pulse-logo {
  width: 100px;
  height: 100px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}
