.brand img{
position: fixed;
top:0;
left: 10px;
height: 70px;
width: 70px;
}

.navigation{
width: 60px;
height: 60px;
background: linear-gradient(to right, rgb(238, 102, 170), rgb(163, 156, 244));
border-radius: 50%;
transition: 0.5s;
transition-delay: 0.5s;
border-radius: 60px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 15px (0, 0, 0, 0.05);
}
.navigation.active{
    width: 700px;
}
.navigation .toggleMenu{
    position: absolute;
    width: 60px;
    height:60px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s;
    transition-delay: 0.5s;
}
.navigation.active .toggleMenu{
    background-color: rgb(174, 120, 224);
    transition-delay: 0s;
    transform: translateY(60px);
    width: 30px;
    height: 30px;
    box-shadow: 0 10px 15px rgba(42, 40, 40, 0.05);
}
.navigation .toggleMenu::before
{
    content:'';
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background-color: rgb(0, 0, 0);
    transform: translateY(-5px);
    transition: 0.5s;
    transition-delay: 0.5s;

}
.navigation .toggleMenu::after
{
    content:'';
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0);
    transform: translateY(5px);
    transition: 0.5s;
    transition-delay: 0.5s;
}
.navigation.active .toggleMenu::before{
    transition-delay: 0s;
    background-color: rgb(255, 255, 255);
    transform: translateY(0px) rotate(45deg) scale(0.5);
}
.navigation.active .toggleMenu::after{
    background-color: rgb(255, 255, 255);
    transform: translateY(0px) rotate(315deg) scale(0.5);
}
.navigation li{
    list-style: none;
    transition: 0.5s;
    transform: scale(0);
}
.navigation.active li{
    transition-delay: 0.7s;
    display: flex;
    transform: scale(1);
}
.navigation li a{
    font-weight: bold;
    text-decoration: none; 
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 15px;
    border-radius: 20px;
    transition: 0.5s;
}
.navigation li a:hover{
    background-color: rgba(220, 220, 220, 0.6);
    color: rgb(232, 13, 123);
    cursor: pointer;
}
.download-button {
    width: 80px;
    position: fixed;
    display: flex;
    justify-content: end;
    align-self: center;
    right: 2rem;
}
  .custom-btn {
    width: 100px;
    height: 40px;
    color: #000000;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-align: center;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
  }
  .btn-8 {
    background-color: #f0ecfc;
    font-weight: 1000;
  background-image: linear-gradient(315deg, rgb(174, 120, 224) 0%, rgb(237, 89, 163) 74%);
    line-height: 42px;
    padding: 0;
    border: none;
  }
  .btn-8 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .btn-8:before,
  .btn-8:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background: rgb(240, 69, 154);
    transition: all 0.3s ease;
  }
  .btn-8:before{
     height: 0%;
     width: 2px;
  }
  .btn-8:after {
    width: 0%;
    height: 2px;
  }
  .btn-8:hover:before {
    height: 100%;
  }
  .btn-8:hover:after {
    width: 100%;
  }
  .btn-8:hover{
    background: transparent;
  }
  .btn-8 span:hover{
    color: rgb(240, 69, 154);
  }
  .btn-8 span:before,
  .btn-8 span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: rgb(240, 69, 154);
    /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
      inset -4px -4px 6px 0 rgba(255,255,255,.5),
      inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/
    transition: all 0.3s ease;
  }
  .btn-8 span:before {
    width: 2px;
    height: 0%;
  }
  .btn-8 span:after {
    height: 2px;
    width: 0%;
  }
  .btn-8 span:hover:before {
    height: 100%;
  }
  .btn-8 span:hover:after {
    width: 100%;
  }









  @media only screen and (max-width: 760px) {
    .brand img {
        height: 50px; /* Smaller logo for mobile */
        width: 50px;
    }

    .navigation {
        width: 50px; /* Adjust navigation width */
        height: 50px;
        display: flex;
        justify-content: end;
        align-self: center;
    }

    .navigation.active {
        width: 100%; /* Full width on active for better visibility */
    }

    .navigation .toggleMenu {
        width: 50px;
        height: 50px;
    }

    .navigation.active .toggleMenu {
        transform: translateY(50px);
        width: 25px;
        height: 25px;
    }

    .navigation li a {
        font-size: 0.8em; /* Smaller text for mobile */
    }

    .custom-btn {
        width: 80px; /* Smaller buttons */
        height: 30px;
        font-size: 0.8em; /* Smaller font size */
    }
   
   .navigation.active {
    /* Full-width navbar when active */
    width: 100%;
    height: auto; /* Adjust height to fit content */
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the start */
    padding: 10px; /* Add some padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navigation.active .toggleMenu {
    bottom: 0;
}

.navigation li {
    display: none;
}

.navigation.active li {
    /* Show menu items when active */
    display: block; /* Change to block for vertical stacking */
    margin: 10px 0; /* Add some margin for spacing */
    transform: scale(1); /* Ensure they are fully visible */
}

.navigation li a {
    /* Adjustments for navigation links */
    display: block; /* Make each link block-level for easier touch */
    padding: 10px 20px; /* Increase padding for larger touch area */
}

  }