.logo{
    height: 60px;
    flex-wrap: wrap;
}
.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999; 
    background-color: #1a202c; 
  }
.sticky-sidebar {
    position: sticky;
    top: 6rem; 
    height: calc(100vh - 6rem);
    overflow-y: auto; 
  }
.hero{
    background-image: url(../Assets/desktop-wallpaper-ultra-original-and-background-it-ultra.jpg);
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.prsize {
    height: 200px;
}
.prsize2 {
    height: 300px;
}
.text{
    font-weight: 500;
    font-size: large;
}
/*index page scrolling css*/
.scroll-container {
  display: flex;
  overflow-x: auto;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  margin: 0 auto;
}

.scroll-container a {
  display: inline-block;
  margin-right: 20px;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.scroll-container a:hover {
  transform: scale(1.1);
}

.scroll-container img {
  max-width: 200px;
  height: 200px;
  border-radius: 8px;
  display: block; 
}

#sidebar {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  #products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .product-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    width: 200px;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  
  .product-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .product-card p {
    font-size: 14px;
    color: #666666;
  }
  
/*login page*/
.login{
  background-image: url(../Assets/-for-desktop-wallpaper.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.container2{
  border: 2px solid white;
  backdrop-filter: blur(10px);
}