/* Responsive Top Bar and Navbar for Power India */
.top-bar {
  background: #0B2646;
  color: #fff;
  font-size: 1.15rem;
  padding: 0.25rem 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar .left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar .right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-bar .social-icons a {
  color: #C9833A;
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-left: 0.25rem;
  transition: background 0.2s;
  text-decoration: none;
}
.top-bar .social-icons a:hover {
  background: #C9833A;
  color: #fff;
}

/* Navbar */
.navbar-custom {
  background: #FFF5EC;
  /* padding: 0.5rem 0 0.5rem 0; */
  border-bottom: 1px solid #eee;
}
.navbar-custom .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar-custom .navbar-brand img {
  height: 80px;
  width: auto;
}
.navbar-custom .brand-text {
  font-family: 'Inter', serif;
  font-weight: 700;
  color: #235990;
  font-size: 2rem;
  line-height: 1.1;
}
.navbar-custom .brand-subtext {
  color: #C9833A;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: -0.5rem;
}
.navbar-custom .navbar-nav {
  gap: 1.5rem;
}
.navbar-custom .nav-link {
  color: #235990;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar-custom .nav-link:hover {
  color: #C9833A;
}
.navbar-custom .btn-login {
  border: 2px solid #294a7a;
  color: #294a7a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  padding: 1rem 2rem;
  background: #fff;
  margin-right: 1rem;
  transition: background 0.2s, color 0.2s;
}
.navbar-custom .btn-login:hover {
  background: #294a7a;
  color: #fff;
}
.navbar-custom .btn-join {
  background: #294a7a;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  padding: 1rem 2rem;
  border: none;
  transition: background 0.2s;
}
.navbar-custom .btn-join:hover {
  background: #C9833A;
  color: #fff;
}

@media (max-width: 991.98px) {
  .navbar-custom .navbar-nav {
    gap: 0.5rem;
  }
  .navbar-custom .btn-login,
  .navbar-custom .btn-join {
    padding: 0.5rem 1.2rem;
    font-size: 1.1rem;
  }
  .navbar-custom .navbar-brand img {
    height: 60px;
  }
}
@media (max-width: 767.98px) {
  .top-bar .container,
  .navbar-custom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .navbar-custom .navbar-brand img {
    height: 48px;
  }
  .navbar-custom .brand-text {
    font-size: 1.3rem;
  }
  .navbar-custom .brand-subtext {
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  .top-bar .left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .top-bar .right {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
  }
  .navbar-custom .navbar-brand img {
    height: 36px;
  }
}


.navbar {
    --bs-navbar-padding-x: 0;
   --bs-navbar-padding-y: 0rem !important;

}