
        html {
    scroll-behavior: smooth;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
              -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
        }
        div {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}



   

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

   header {
            
            height: var(--header-height);
            position: fixed;
            top: 0;
            width: 100%;

            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            gap: 20px;
     display: flex;
     justify-content: space-between;
            align-items: center;
        
            padding: 0 20px;

           background: rgba(15, 23, 42, 0.95);
  /* border-bottom: 1px solid #ffffff10; */
        }

     

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
           
        }

        .logo i {
            font-size: 1.8rem;
        }

        .search-bar {
            flex: 0 1 500px;
            position: relative;
            margin: 0 0px;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 20px;
            border-radius: 30px;
            border: none;
            background-color: var(--dark);
            color: var(--light);
            font-size: 0.95rem;
            padding-left: 45px;
        }

        .search-bar i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }

        .nav-icons {
            display: flex;
            align-items: center;
            gap: 23px;
        }

        .nav-icons a {
            font-size: 1.8rem;
            color: var(--gray);
            transition: var(--transition);
            position: relative;
        }

        .nav-icons a:hover {
            color: var(--primary);
        }

        .notification-count {
            position: absolute;
            top: -1px;
            right: -8px;
            background-color: var(--secondary);
            color: white;
            font-size: 0.8rem;
            font-weight: 500;
            width: 19px;
            font-family: 'Poppins', sans-serif;
            height: 19Px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            border: 0px solid var(--primary);
            cursor: pointer;
        }

        .user-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.Register{
      background-color: transparent;
            color: var(--primary);
            padding: 8px 10px;
            border-radius: 10px;
            border: solid 1px var(--primary);
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
}
.login{
    
}
.Register:hover {
            background-color: #04b46d;
            transform: translateY(-2px);
              color: #000000;
        }
        .Register:hover span {
     
              color: #000000;
        }
.Register span{
          font-size:15PX;
             color: var(--primary);
             font-family: sans-serif;
         font-weight: 700;
             
}
        .upload-btn {
            background-color: var(--primary);
            color: white;
            padding: 8px 10px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .upload-btn:hover {
            background-color: #04b46d;
            transform: translateY(-2px);
              color: #ffffff;
        }
             .nav-icons .fa-upload{
            font-size: 1.5rem;
            color: #000000;
            transition: var(--transition);
            position: relative;
        }
 .upload-btn span {
             font-size:15PX;
             color: #000000;
             font-family: sans-serif;
         font-weight: 700;
             
            }
      .menu-button{
                display: none;
            }
                @media (max-width: 1200px) {

     .search-bar {
                flex: 0 1 400px;
            }
            
          
}

 @media (max-width: 992px) {
             .menu-button{
                display: flex;
                align-items: center;
            }
            .menu-button img{
                display: initial;

                
                  width: 40px;
            height: 40px;
            cursor: pointer;
            }
            .sidebar {
                  z-index: 999;
               transform: translateX(-100%);
                  overflow-y:auto;
                    width: 300px;
                border-bottom-right-radius: 10PX;
                border-bottom-left-radius: 10PX;
                   
            }
            
            .sidebar.active {
                transform: translateX(0);
            }
            
            .content, footer {
                margin-left: auto;
            }
            
         
            
            .search-bar {
                flex: 0 1 300px;
            }
            
            /* Hide desktop nav icons on mobile */
             .notification-icon {
               display: none;
            }
            .user-avatar {
display: none;
            }
            .notification-icon img{
               display: none;
            }
            .user-avatar img{
display: none;
            }
            /* Show mobile nav */
         
        }


 @media (max-width: 768px) {
    header {
            
            height: var(--header-height);
            position: fixed;
            top: 0;
            width: 100%;

            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
gap: 20px;
     display: flex;
     justify-content: space-between;
            align-items: center;
        
            padding: 0 10px;

             background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
        }
            
            .logo {
                font-size: 1.3rem;
            }
            
            .logo i {
                font-size: 1.5rem;
            }
            
            .search-bar {
                margin: 0 10px;
                flex: 1;
            }
              .search-bar input {
            width: 100%;
            padding: 10px 10px;
            border-radius: 30px;
            border: none;
            background-color: var(--dark);
            color: var(--light);
            font-size: 0.85rem;
            padding-left: 45px;
        }
          .nav-icons {
            display: flex;
            align-items: center;
            gap:10px;
        }

        .nav-icons a {
            font-size: 8rem;
            color: var(--gray);
            transition: var(--transition);
            position: relative;
        }

        .nav-icons a:hover {
            color: var(--primary);
        }
            .upload-btn {
                padding: 6px 10px;
                font-size: 0.9rem;
            }
            
            .upload-btn span {
                display: none;
            }
            
            .user-avatar {
                width: 35px;
                height: 35px;
            }
            
 }
    @media (max-width: 576px) {
          
            
            .search-bar input {
                padding: 10px 15px;
                padding-left: 40px;
                font-size: 0.9rem;
            }
            
            .search-bar i {
                left: 12px;
            }
            
            .logo {
                font-size: 1.2rem;
                gap: 5px;
            }
            
            .upload-btn {
                padding: 6px 10px;
            }
            
            .user-avatar {
                width: 32px;
                height: 32px;
            }
            
        
            
            
            
         
        }

         @media (max-width: 480px) {

     header {
            
            height: var(--header-height);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            gap: 3px;
             display: flex;
             justify-content: space-between;
            align-items: center;
            padding: 0 10px;
             backdrop-filter: blur(12px);
             border-bottom: 1px solid #ffffff10;
        }
   .logo span {
                display: none;
            }
            
            .logo i {
                font-size: 1.8rem;
            }
            .search-bar  {
               
            }
            .search-bar input {
                padding: 10px 10px;
                padding-left: 25px;
                font-size: 0.7rem;
                border-radius: 5PX;
                 margin-left: 5Px;
            }
            
            .search-bar i {
                left: 10px;
                font-size: 13PX;
            }

         .nav-icons {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-icons a {
            font-size: 1.8rem;
            color: var(--gray);
            transition: var(--transition);
            position: relative;
        }

        .nav-icons a:hover {
            color: var(--primary);
        }
.Register{
      background-color: transparent;
            color: var(--primary);
            padding: 6px 5px;
            border-radius: 5px;
            border: solid 1px var(--primary);
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            text-align: center;
            
            gap: 2px;
            white-space: nowrap;
}
.login{
    display: none;
}
.Register:hover {
            background-color: #04b46d;
            transform: translateY(-2px);
              color: #000000;
        }
        .Register:hover span {
     
              color: #000000;
        }
.Register span{
          font-size:10PX;
             color: var(--primary);
             font-family: sans-serif;
         font-weight: 700;
             
}
        .upload-btn {
            background-color: var(--primary);
            color: white;
            padding: 7px 7px;
            border-radius: 3px;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0px;
            white-space: nowrap;
        }

        .upload-btn:hover {
            background-color: #06df88;
            transform: translateY(-2px);
              color: #ffffff;
        }
             .nav-icons .fa-upload{
            font-size: 13PX;
            color: #000000;
            transition: var(--transition);
            position: relative;
            margin: 0cm;
            padding: 0cm;
        }
 .upload-btn span {
             font-size:15PX;
             color: #000000;
             font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
             
            }
            .menu-button{
                display: flex;
                align-items: center;
            }
            .menu-button img{
                display: initial;
                  width: 30px;
            height: 30px;
            cursor: pointer;
            }
}

              