/* Custom styles for the features section */
.features {
  background-color: #f7f7f7;
  padding: 100px 0;
  text-align: center;
}

.feature {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 15px; /* Adjust the padding as needed */
  text-align: center;
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #007bff; /* Blue color for icons */
}

.feature-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333; /* Darker text color */
}

.feature-description {
  font-size: 1.1rem;
  color: #555; /* Subdued text color */
}

.feature-image {
  width: 100%; /* Make the image span full width of the card */
  height: auto; /* Maintain aspect ratio */
}

/* Custom CSS for the sidebar tab */
.sidebar-tab {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff; /* Set the background color */
  border-radius: 0 10px 10px 0;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s; /* Add a smooth color transition */
}

.sidebar-tab:hover {
  background-color: #f0f0f0; /* Change the background color on hover */
}

/* Styling for the Bootstrap person icon */
.person-icon {
  font-size: 24px;
  vertical-align: middle;
}

/* Add this CSS to style the tab label */
.tab-label {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; /* Adjust the radius as needed for the rounded side */
  border-top: 2px solid #f0f0f0; /* Optional: Add a top border for a tab-like appearance */
}

/* Custom CSS for offcanvas menu */

/* .offcanvas-content {
  background-color: #f0f0f0;
} */

/* Custom CSS for offcanvas */
.offcanvas.show {
  background-color: rgba(
    240,
    240,
    240,
    1
  ); /* Light gray background color with some transparency */
}
