.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 10px 20px;
}

.leftIcon img {
    width: 100px;
}

.rightIcon a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #3d3d3d;
    background-image: linear-gradient(90deg, #56cbf255, #2F80ED77);
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(65, 100, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .rightIcon a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(65, 75, 255, 0.4);
  }
  /*  */