*{
    padding: 0;
    margin: 0;
    font-family: "poppins",sans-serif;
}
.main_box{
    background: url("photo.jpg");
    height: 100vh;
    background-size: cover;
}
.animated-logo {
    display: inline-block;
    animation: glow 2s infinite alternate-reverse;
    
  }
  
@keyframes glow {
    from {
        font-size: 23px;
        color:  rgba(255,255,255,0.1);
       
    }
    to {
        font-size: 30px;
        color:rgba(255,255,255,0.5);
    }
    
  }
.button{
position: absolute;
font-size: 30px;
font-weight: 700;
align-items: end;
 left: 1200px;
 background-color: rgba(255,255,255,0.1);
}

.btn_one i{
 color: white;
 font-size: 30px;
 font-weight: 700;
 position: absolute;
 left: 16px;
 line-height: 60px;
}
.sidebar_menu{
    position: fixed;
    left: -300px;
    height: 100vh;
    width: 300px;
    background-color: rgba(255,255,255,0.1);
    box-shadow: 0 0 6px rgba(255,255,255,0.5);
    transition: all 0.2s linear ;
}
.sidebar_menu .logo{
   position: absolute;
   width: 100%; 
   line-height: 60px;
   box-shadow: 0 0 4px rgba(255,255,255,0.5);
   height: 60px;
}
.sidebar_menu .logo a {
position: absolute;
left: 50px;
color: white;
text-decoration: none;
font-size: 20px;
font-weight: 500;

}
.menu ul li a:hover {
    color: #00e5ff;
  }
.sidebar_menu .btn_two i{
     color: grey;
     font-size: 25px;
     line-height: 60px;
    position: absolute;
    left: 275px;
    opacity: 0; 
    /* Removed from web */
    cursor: pointer;
}
.sidebar_menu .menu{
    position: absolute;
    width: 100%;
    top: 80px;
}
.sidebar_menu .menu li{
    margin-top: 6px;
    padding: 14px 20px;
}
.sidebar_menu .menu i,a{
    color: white;
    text-decoration: none;
    font-size: 20px;
}
.sidebar_menu .menu i{
    padding-right: 8px;
}
.sidebar_menu .social_media{
    position: absolute;
    left: 25%;
    bottom: 50px;
}
.sidebar_menu .social_media i{
    color: white;
    opacity: 0.5;
    padding: 0 5px;

}
#check{
    display: none;
}
.sidebar_menu .menu li:hover{
    box-shadow: 0 0 4px rgba(255,255,255,0.5);
}
.btn_one i:hover{
font-size: 40px;
}
.btn_two i:hover{
    font-size: 30px;
}
.sidebar_menu .social_media i:hover{
    opacity: 1;
    font-size: 30px;
    /* transform: scale(1.1); */
}
#check:checked ~ .sidebar_menu{
left: 0;
}
#check:checked ~ .btn_one i{
    opacity: 0;
}
#check:checked ~ .sidebar_menu .btn_two i{
    opacity: 1;
}

  /* Tooltips */
  [data-tooltip]:hover:after {
    
    content: attr(data-tooltip);
    position: absolute;
    background: #000;
    color: white;
    padding: 5px;
    font-size: em;
    border-radius: 5px;
    top: 50%;
    left: 105%;
    white-space: nowrap;
  }

/* login botton */


.login-sign-up {
    position: absolute;
    top: 20px;
    right: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
    font-size: 30px;
    color: white;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.2s linear;
}

.login-sign-up ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.login-sign-up li {
    display: flex;
    align-items: center;
}

.login-sign-up a {
    color: white;
    text-decoration: none;
    margin-left: 5px;
    transition: color 0.2s ease;
}

.login-sign-up a:hover {
    color: #00bcd4; /* Add a hover color for links */
}

.login-sign-up:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Slightly brighter on hover */
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed; /* Changed to fixed */
    top: 15px;
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    border: 2px solid transparent;
    border-radius: 30px;
    overflow: hidden;
    background-color: #000; /* Black background */
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Ensures it's on top of other elements */
  }
  
  .search-container:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  }
  
  .search-input {
    border: none;
    padding: 15px 20px;
    outline: none;
    width: 300px;
    font-size: 16px;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    transition: width 0.3s ease-in-out;
  }
  
  .search-input:focus {
    width: 350px;
  }
  
  .search-button {
    background-color: #444; /* Dark gray button */
    border: none;
    padding: 15px 15px;
    cursor: pointer;
    font-size: 18px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
  }
  
  .search-button:hover {
    background-color: #666; /* Lighter gray on hover */
    transform: scale(1.1);
  }
  
  .search-input::placeholder {
    color: #bbb; /* Light gray placeholder */
  }
  