nav {
  position: sticky !important;
  top: 0;
  left: 0;
  padding: 0 !important;
  background: transparent;
  width: 100%;
  border-radius: 0;
  z-index: 1000 ;
}
.navbar-brand i {
    color: #F2AF03;
}

.icon-box {
  background-color: #F2AF03;
  padding: 13px 30px;
  font-size: 1.6rem;
  margin-bottom:-2px ;
  border-radius: 6px 0 0 6px;
  transition: 0.3s;
  color: #000;
}
.icon-box:hover {
  background-color: #fff;
  color: #F2AF03;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.nav-link {
  color: #000 !important;
  transition: color 0.3s ease;
  position: relative;
  transition: 0.3s;
}
 .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background-color: #d99a02;
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: #F2AF03 !important;
}

.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 50px 20px 5px 20px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col h4 {
  color: #F2AF03;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #F2AF03;
}

.footer-logo {
  font-weight: bold;
  color: #F2AF03;
  margin-bottom: 15px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
  }
  nav {
    padding: 5px 0 !important;
  }
}
