nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background: #343a40;
    box-shadow: 0 4px 20px rgba(239, 31, 31, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
   
  }

.logo {
    font-weight: 700;
    font-size: 1.9rem;
    color:whitesmoke;
  }

  .nav-links{
    gap: 2rem;
    list-style: none;
    display: flex;

  }

  .nav-links a {
    text-decoration: none;
    color:white;
    font-weight: 500;
  }
  
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  .btn {
    display: inline-block;
    background-color: #010912;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 15px;
  }
  
  .hero {
    text-align: center;
    background-color: #9dbfe1;
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    color: #212529;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  

  .about {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
  }
  
  .feature-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .box {
    background-color: #9dbfe1;
    padding: 60px 25px;
    border-radius: 10px;
  }
  
  .shop {
    background-color: #9dbfe1;
    padding: 40px 20px;
    text-align: center;
  }
  
  .items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .item {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 5px;
    width: 190px;
  }
  
  .contact {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 100px;
    
  }

  .box-c{
   background-color: #9dbfe1;
   padding: 50px 50px;
   border-radius: 10px;
  }
  
  footer {
    background-color: #343a40;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 20px;
  }
