/* Change Brand Font */
.navbar-brand{
  font-family: 'Ubuntu', sans-serif;
  font-size: 2em;
  font-weight: bold;
}

/* Change Navigation Color */
.navbar #myMenu .custom-nav .nav-item a {
  color: #fff;
}
.navbar #myMenu .custom-nav .nav-item a:hover{
  color: #F0AAB1;
}

/* Make Header Image Responsive */
.back-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 90vh;
  border-radius: 0px;
  margin-top: 74px;
}

/* Header Image Sub-Title */
.st {
  font-size: 24px;
}

/* Change Footer Social Icon Color //#DC3545; */
a {
  color:  #212529;
}
a:hover {
  color: #E994A2;
}

.whatsapp-btn {
  position: fixed; /* Keep the icon fixed in a position */
  bottom: 60px; /* 20px from the bottom */
  left: 20px; /* 20px from the right */
  z-index: 1000; /* Ensure it's always on top */
  /*background-color: #25d366; /* WhatsApp green */
  color: #25d366;/*white;*/
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 60px; /* Center the icon vertically */
  font-size: 30px;
  box-shadow: 0 4px 32px rgb(9 185 74);
  transition: transform 0.3s ease-in-out;
}
.whatsapp-btn:hover {
  background-color: #20b858;
  text-decoration: none;
  color: white;
}
.bouncing-button {
    animation: bounce 2s ease infinite;
}