@charset "utf-8";
/* CSS Document */

      /* Custom Classes */
.logo-underline {
  height: 3px;
  background-color: #d9534f;
  width: 30%;
  margin: 5px auto 25px;
  opacity: 0.8;
}

.heading-decorated {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: black;
  position: relative;
}

.text-highlight {
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 800px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
}

.text-highlight .emphasize {
  color: #d9534f;
  font-weight: bold;
  font-size: 1.2rem;
}

.card {
  background-color: white;
  border: 1px solid #ff0000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

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

.card-header {
  background-color: white;
  color: black;
  text-align: center;
  font-size: 2rem;
}

.card-body {
  color: black;
}

.icon {
  font-size: 3rem;
  display: block;
  margin: 0 auto;
  color: #ff0000;
}

.client-logo img {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.btn-danger {
    background-color: #d9534f; /* Default background color */
    color: gold; /* Text color */
    border: 2px solid gold; /* Golden outline */
    font-weight: bold; /* Strong text */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.btn-danger:hover {
    background-color: #c9302c; /* Change background color on hover */
    color: gold; /* Keep text color gold on hover */
}