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

/* about hero */
.about-hero {
  background: url('images/about.jpg') center center / cover no-repeat;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 100%;
  height: 60vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .about-hero {
    background-attachment: scroll;
    height: 50vh;
  }

  .about-hero h1 {
    font-size: 2rem;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 40vh;
  }

  .about-hero h1 {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
}


.about-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 40px;
  border-radius: 12px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background-color: #dc3545;
  margin: 20px auto;
  border-radius: 5px;
}

/* Mission & Vision icons */
.section-box{
  background-color: #e0e7ee;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-top: 10px;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 50px;
}
.section-box i {
  color: #195863;
  font-size: 3rem;
}

/* Core Values card styling */
.core-values .card {
  border: 1px solid rgb(138, 5, 5);
  background-color: #0b6777;
  color: white;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.418);
}

.core-values .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.core-values .card i {
  font-size: 3rem;
  color: white;
}

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