.web-logo img {
    border-radius: 50%; /* Makes it round */
    border: 4px solid #5c5959; /* Black ring around the image */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    width: 100px; 
    height: 100px;
}

.web-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.web-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.logo img {
    border-radius: 50%; /* Makes it round */
    border: 4px solid #5c5959; /* Black ring around the image */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    width: 100px; 
    height: 100px;
}

.logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.navbar-nav {
  margin: 0 auto;
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: row;
  gap: 30px; /* Space between items */
  
}

