body{
    padding: 0;
    margin: 0;
}
.navbar-brand{
    margin-right: 300px;
    margin-left: 100px;
}
.nav-item{
    font-size: 20px;
    margin: 15px;
}
.btn{
    margin-right: 100px;
    background-color: rgb(13,13,67);
    color: white;
}
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar-toggle{
    margin-right: 50px;
}


.dropdown-menu.custom-dropdown.show {
  display: block; 
  display: grid;  /* this works with Bootstrap */
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 20px;
  padding: 20px 30px;
  
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  
}


.dropdown-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  padding: 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease, text-shadow 0.3s ease;
}

.dropdown-item img {
  width: 24px;
  height: 24px;
}

.dropdown-item:hover {
  background-color: #e6f0ff; /* soft blue */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
