/* General hover effect for navigation links */
      .navbar-nav .nav-link:hover {
        color: #0056b3; /* Customize the color */
        transition: color 0.3s;
      }
      
      /* Open dropdown on hover */
      .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Remove margin to align dropdown */
      }
      
      /* Optional: Customize dropdown item hover effect */
      .dropdown-menu .dropdown-item:hover {
        background-color: #f1f1f1; /* Customize the background color */
        color: #000; /* Customize the text color */
      }
	  .text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.position-relative {
  position: relative;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}
  .fixed-bottom-left {
            position: fixed;
            bottom: 0;
			right:0;
            z-index: 1000;
            padding: 1.25rem; /* equivalent to p-5 */
        }