/* Initial navbar background */
.nav-bar {
  padding: 0 2%;
}
.navbar {
  transition: background-color 0.3s ease;
  background: rgba(255, 255, 255, 0.1); /* Initial transparent background */
  backdrop-filter: blur(10px);
}

/* Background color when scrolled */
.navbar.scrolled {
  background-color: rgb(94, 94, 94); /* Background color after scroll */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: add a shadow */
}

/***  when navbar is scrolled ***/
.scrolled {
  background-color: rgb(94, 94, 94); /* Background color after scroll */
}
/***  when navbar is toggled ***/
.toggled {
  background-color: rgb(94, 94, 94); /* Background color after scroll */
}

/***** navbar toggler ****/
.navbar-toggler {
  background: #fff;
}

.nav-item a {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: blue;
}

.navbar-brand img {
  height: 90px; /* Adjust the size of the logo */
}
@media (max-width: 996px) {
  .nav-bar {
    padding: 0;
  }
  .navbar-brand img {
    height: 60px;
  }
}

.nav-item > .nav-link {
  color: #fff;
  text-transform: uppercase;
}

.nav-item > .nav-link:hover {
  color: #fdb72e;
  text-transform: uppercase;
}

.nav-item > .nav-link.active {
  color: #fdb72e;
  border-bottom: 2px solid #fdb72e;
}

/* global end */
/* footer start */
.footer {
  background-color: #003976; /* Dark Blue background */
  padding: 5% 5% 1% 5%;
  margin-top: 50px;
}

.footer-logo {
  margin-top: -6%;
  margin-bottom: 10px;
  margin-left: -2%;
  max-width: 100%;
}

.footer h5 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 15px;
}

.footer p {
  font-size: 1rem;
  font-weight: 400;
}

.footer a {
  text-decoration: none;
}

.social-icons {
  margin-top: 5%;
  margin-bottom: 5%;
}

.social-icons a {
  background-color: #fff;
  padding: 13px;
  border-radius: 42px;
  display: inline-block; /* Use flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  width: 50px; /* Set a fixed width */
  height: 50px; /* Set a fixed height */
}

.social-icons .fa {
  font-size: 1.5rem; /* Increase size if needed */
  color: #1f4897;
}
.certification-logo {
  width: 50px; /* Adjust the size based on actual logo dimensions */
  margin-right: 10px;
}
.list-unstyled {
  border-right: 1px solid #fdb72e;
}
.list-unstyled li {
  padding-bottom: 10px;
}
.text-yellow {
  color: #fdb72e;
  text-transform: uppercase;
  border-bottom: 1px solid #fdb72e;
}
.text-white {
  color: #fff !important;
  text-transform: uppercase;
}

.footer-trusted-logo img {
  width: 15%;
}
@media (max-width: 996px) {
  .social-icons .fa {
    font-size: 1rem;
    width: 13%;
  }
  .footer-col-1,
  .footer-col-2,
  .footer-col-3 {
    padding-top: 10px;
    padding-bottom: 3%;
    border-top: 5px solid #f9a825;
  }
  .footer-trusted-logo {
    padding-bottom: 10%;
  }
  .list-unstyled {
    border: none;
  }
  .footer h5 {
    font-size: 1rem;
  }

  .footer p {
    font-size: 0.8rem;
    font-weight: 400;
  }
  .text-white,
  .text-yellow {
    font-size: 0.8rem;
  }
}
/* footer end */
