/* 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;
}

/* Service cards */
.service-card {
  border: none;
  border-radius: 20px;
  background-color: #f8f9fa;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-icon {
  font-size: 40px;
  color: #0b6777;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .service-icon {
    font-size: 30px;
  }
}

/* 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;
}