.update-card p { min-height: 50px; }

/* for card toggle */
.toggle-details {
  border-radius: 50%;
}
.card-title {
  font-size: 1.1rem;
}
/* for search bar */
.search-box-rounded {
  border-radius: 50px !important; /* fully curved */
  overflow: hidden; /* keeps children inside curve */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* soft shadow like Google */
}

.search-box-rounded .form-control {
  border: none;
  border-radius: 50px 0 0 50px !important;
  padding-left: 20px;
  font-size: 1rem;
}

.search-box-rounded .btn {
  border-radius: 0 50px 50px 0 !important;
  padding: 0 25px;
}


/* filter */
#filterBar {
  border: 1px solid #e5e7eb;
}

#filterBar .filter-btn {
  background: transparent;
  border: none;
  padding: 8px 18px;
  font-weight: 500;
  font-size: 14px;
  color: #374151;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
}

#filterBar .filter-btn:hover {
  background: #f3f4f6; /* light gray on hover */
}

#filterBar .filter-btn.active {
  background: linear-gradient(135deg, #41b1ff 0%, #a055f3 100%);   /* primary blue */
  color: #fff;           /* white text */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-weight: 600;
}


.update-card {
  border-radius: 10px;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.update-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.update-card h5 {
  font-size: 1rem;
}

.update-card .badge {
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  background: #f3f4f6;
  color: #555;
}

.update-card small {
  font-size: 1rem;
}

.update-card .learn-more {
  text-decoration: none;
}

.update-card .learn-more:hover {
  text-decoration: underline;
}




/* privacy policy */
.policy-content {
  text-align: justify;
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
}
.policy-content h3 {
  margin-top: 1.8rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links .nav-link {
  color: #212529; /* dark grey text */
  transition: color 0.2s ease-in-out;
}

.footer-links .nav-link:hover {
  color: #3699FF !important; /* Metronic blue */
}
