/* Navbar */
.navbar-nav .nav-link:hover {
  color: #307c8a; /* Bootstrap primary */
}
 .get-consultant-btn:hover {
  background-color: #2e6b74;
  color: white;
}
.nav-link{
  font-weight: bolder;
  font-size: 1.1rem;
}
.get-consultant-btn{
  transition: background-color 0.3s ease;
  background-color: rgb(221, 21, 21);
  color: white;
  font-weight: bolder;
}
.navbar{
position: fixed;
box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
z-index: 999;
top: 0;
}

/* Contact Section */
#contact h2 {
    color: #0b6777;
  }
  
  #contact form {
    border-radius: 20px;
    transition: box-shadow 0.3s ease;
  }
  
 #send{
  color:#095d6b;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: bold;
 }
  
  #contact form input,
  #contact form textarea {
    border-radius: 10px;
    border: 1px solid #ced4da;
  }
  
  #contact form input:focus,
  #contact form textarea:focus {
    border-color: #0b6777;
    box-shadow: none;
  }
  
  #contact .btn-primary {
    background-color: #0b6777;
    border: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  #contact .btn-primary:hover {
    background-color: #095d6b;
  }
  
  /* Footer */
  .footer-section{
    position: sticky;
    box-shadow: rgba(0, 0, 0, 0.459) 0px -5px 15px;
    z-index: 999;
    top: 0;
}

.footer-logo {
    max-width: 50px;
  }