
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color:black;
}

.navbar-logo {
  padding: 0;
  margin: 0;
  background:none;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.navbar-logo img {
  width: 300px; /* You can adjust size here */
  height: 190px;
  display: block;
  object-fit: contain;
  border: none;
  margin: 0;
  padding: 0;
  background: transparent;
}



.navbar-links ul {
  display: flex;
  list-style: none;
  gap: 20px; 
 
}
.navbar-links {
  margin-left: -20px; 
}



.navbar-links li {
  margin-right: 20px;
  font-size: 1.2rem;
  
}

.navbar-links a {
  color:white;
  text-decoration: none;
  font-weight: bold;
  margin-right: 2%;
}

.navbar-links a:hover {
  text-decoration: underline;
}

.top-banner {
  width: 100%;
  background-color: rgb(164, 130, 238);
  color: white;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.top-banner p {
  white-space: nowrap;
  display: inline-block;
  animation: marquee 12s linear infinite;
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  padding-left: 100%;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

