.card-title {
  font-size: 1.5rem; /* Increased font size for title */
  font-weight: bold;
}

.card-text {
  font-size: 1.1rem; /* Increased font size for paragraph */
}

.card {
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}




  /* Hide tabs and content initially */
  #advisory-tabs, #microfinance-tabs, 
  #advisory-tabContent, #microfinance-tabContent {
    display: none; /* Use display: none instead of visibility */
  }

  /* Typography and tab content appearance */
  h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* Styling the active tabs */
  .nav-pills .nav-link.active {
    background-color: #4e73df;
    color: white;
  }

  /* Smooth transitions */
  .tab-content {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Responsive layout */
  @media (max-width: 768px) {
    .nav-pills .nav-link {
      text-align: center;
      padding: 10px;
    }

    .tab-content {
      padding: 15px;
    }
  }

