/* Navigation */
.navbar {
  background: var(--light-color);
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1020; /* Ensures the navbar stays above other content */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow for better visibility */
}

.col-lg-6 p{
  color:black;
  font-size: 149%;
}
.container1 p{
  color: black;
}
.logo {
  height: 65px;
}

.nav-link {
  color: var(--dark-color);
  margin: 0 1rem;
  font-weight: 500;
}


.btn-danger{
  background-color: #ff954e !important;
  color: white !important;
  border-color: #ff954e;
}

@media (max-width: 768px) {
  .btn {
      font-size: 14px; /* Slightly smaller font for mobile */
      padding: 12px 15px; /* Adjust padding for smaller screens */
      width: 100%; /* Full width button on mobile */
      text-align: center; /* Center-align text */
  }
  .text{
      text-align: center;    
  }
  .para{
      color: white !important;
      text-align: center;
  }
  .navbar-nav{
      text-align: center;
      
  }
  .navbar-nav .dropdown-menu {
    text-align: center;
  }
}

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  top: 82%;
  background-color: blue;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.floating-box {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 65px;
  width: 200px;
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.floating-box a {
  display: block;
  margin: 10px 0;
  color: black;
  text-decoration: none;
  font-weight: bold;
}
.floating-box a:hover {
  text-decoration: underline;
}
