/* Floating Navigation Bottom Right */
.floating-nav {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  text-align: right;
}

/* Toggle Button */
.floating-nav .toggle-btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background 0.3s;
}
.floating-nav .toggle-btn:hover {
  background: #0b5ed7;
}

/* Menu List */
.floating-nav ul {
  display: none;
  background: rgba(0,0,0,0.9);
  margin: 10px 0 0;
  padding: 10px;
  border-radius: 10px;
  list-style: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.floating-nav ul.show {
  display: block;
}
.floating-nav li {
  margin: 8px 0;
}
.floating-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}
.floating-nav a:hover {
  background: #0d6efd;
  color: #fff;
}

/* Full width section inside main container */
.full-width-inside-container {
  width: 100vw;         
  position: relative;
  left: 50%;            
  transform: translateX(-50%); 
}

/* Hide horizontal scroll bar */
body{ overflow-x: hidden;}