.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    color: #111;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .header-inner {
    max-width: 90%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .menu-label {
    font-size: 30px;
    font-family: "Oleo Script Swash Caps", Sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .menu-label:hover {
    /* font-size: 32px; */
    transform: scale(1.1);
  }
  
  .logo img {
    max-height: 40px;
    width: auto;
    transition: transform 0.3s ease;
  }

  .logo:hover img {
    transform: scale(1.2);
  }

 