/* Custom styles for the navbar */
.navbar-brand img {
  margin-right: 10px;
  width: 83%;
}
.navbar-nav .nav-link {
  margin-right: 15px;
  font-weight: 500;
  color: #333;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  /* margin-top: 17px; */
  position: absolute;
  z-index: 10000;
}
.navbar{
  padding: 0;
}
.navbar-nav .nav-link:hover {
  color: black;
  font-weight: bold;
}
.custom-btn {
  background-color: #98c18c;
  border-color: #98c18c;
  color: white;
}

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  top: 76%;
  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: 20px;
  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;
}


.navbar-nav .btn-primary {
  margin-left: 15px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .navbar-nav .nav-link {
      margin-right: 0;
      margin-bottom: 10px;
  }

  .navbar-nav .btn-primary {
      width: 100%;
      text-align: center;
  }
  .custom-container{
    display: none;
  }
}

.content-form {
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  color: black;
  text-align: center;
  font-family: Arial, sans-serif;
}
.content-form h6{
  color: #d8ff00;
}

/* Form Input Styles */
.strategy-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.strategy-form label {
text-align: left;
font-size: 14px;
margin-bottom: -21px;
}
.strategy-form input {
padding: 12px;
border: 1px solid #444;
border-radius: 5px;
font-size: 16px;
color: #000;
}

.strategy-form span {
color: red;
}
/* Submit button */
.submit-button {
background-color: #e60000;
color: black;
padding: 12px;
border: none;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.submit-button:hover {
background-color: yellowgreen;
}
.content-form {
width: 100%;
max-width: 600px;
margin: 50px auto;
padding: 20px;
color: black;
text-align: center;
font-family: Arial, sans-serif;
}
.content-form h6{
color: #d8ff00;
}