.text-justify{text-align: justify;}
.bg-danger{background-color: #e804a4!important;}
.text-danger{color: #e804a4!important;}
/* Smooth dropdown animation */
.animated-dropdown {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block; /* ensure display block so it animates correctly */
  visibility: hidden;
  pointer-events: none;
}

.nav-item.dropdown:hover .animated-dropdown,
.nav-item.dropdown:focus-within .animated-dropdown {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
  pointer-events: auto;
}

/* Make dropdown dark with white text */
.dropdown-menu-dark {
  background-color: #212529; /* dark */
  border: none;
}

.dropdown-menu-dark .dropdown-item {
  color: #fff;
}

.dropdown-menu-dark .dropdown-item:hover {
  background-color: #343a40;
  color: #e804a4;
}

.btn-sm.rounded-circle {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .position-relative img {
    height: 300px;
    object-fit: cover;
  }
  .border-cstm{border: 10px solid #e804a4;}
  .fixed-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .fixed-contact a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e804a4; /* Bootstrap danger */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
  }

  .fixed-contact a:hover {
    background-color: #e804a4; /* darker danger */
  }