  .list :hover{
            color: rgb(4, 151, 151);
            cursor: pointer;
        }
     .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(240, 248, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 160px;
}


.links {
  display: flex;
  gap: 25px;
}

.links a {
  text-decoration: none;
  color: #0f172a;   
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.links a.active{
    color: #0f172a; 
}
.links a:hover {
  color: rgb(4, 151, 151); 
}

.links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: rgb(4, 151, 151);
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.links a:hover::after {
  width: 100%;
}
.active{
    color: #0f172a; 
}
.navbar {
  background-color: rgba(240, 248, 255, 0.9); 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
body.dark-theme .navbar {
  background-color: #1a1a1a; 
  box-shadow: 0 2px 10px rgba(255,255,255,0.1);
}
.navbar .links a {
  color: #0f172a;
  transition: 0.3s;
}
body.dark-theme .navbar .links a {
  color: #f5f5f5; 
}
body.dark-theme .navbar .links a:hover {
  color: rgb(4, 151, 151); 
}
body.light-theme {
  background-color: white;
  color: black;
}
body.dark-theme {
  background-color: #121212;
  color: white;
}
#themeToggle {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
body.dark-theme #productsContainer {
  color: black;
}
body.dark-theme .box-card{
  color: black;
}
.icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.icons i {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.icons i:hover {
    background: rgb(4, 151, 151);
    color: white;
    border-color: rgb(4, 151, 151);
    transform: scale(1.1);
}
  
    .back {
    width:100%;
    height:500px;
    background-image: url("pictures/background.jpeg");
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position:relative;
}
    .back h1{
    display: inline-block;
    padding: 8px;
    border: solid 1px ;
    border-radius: 60px;
    text-align: center;
    position:relative;
    top:10rem;
    background-color: rgba(255,255,255,0.7);
    }


#about {
    padding: 70px 120px;
    font-family: Arial, sans-serif;

}

#about h1 {
    font-size: 38px;
    color: rgb(4, 151, 151);
    margin-bottom: 25px;
    
}



.sec {
    margin-top: 40px;
    padding-left: 15px;
    border-left: 3px solid rgb(4, 151, 151);
    transition: 0.3s;
    cursor: pointer;

}

.sec h2 {
    color: rgb(4, 151, 151);
    font-size: 24px;
    margin-bottom: 10px;
}

.sec p {
    color: #444;
    line-height: 1.9;
    font-size: 17px;
    max-width: 650px;
}


.sec:hover {
    transform: translateX(20px);
}

    .New_arrival{
        text-align: center;
        font-size: 60px;
    }
        .home_products {
      display: flex;               
      justify-content: center;     
      align-items: center;          
      gap: 30px;                    
      padding: 20px;
    }
    .home_products img{
        width: 250px;
        height: 300px;
        padding: 9px;
        border: solid 3px ;
        border-radius: 2px;
    }
        .offers{
        display: inline-block;
    }
    .home_products p{
        text-align: center;
    }
    .home_products del {
    color: gray;
    margin-right: 8px;
  }
    .home_products img:hover{
    color: rgb(4, 151, 151);
    cursor: pointer;
    }
    #contact {
    background-color: #bed7be;
    padding: 10px 120px;
    font-family: Arial, sans-serif;
    color: white;
    position: relative;
    display: flex;
    justify-content: center; 
    align-items: center;     
    height: 180px;  
    }
.newsletter-form {
  display: inline-flex;
  align-items: center;
}
.newsletter-form input[type="email"] {
  padding: 10px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
}
.newsletter-form button {
  padding: 10px 15px;
  border: none;
  background-color: #333;
  color: white;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
.newsletter-form button:hover {
  background-color:rgb(4, 151, 151);;
}
.social-icons {
  display: inline-block;
  width: 100px;  
  margin: 10px;
  text-align: center;     
  color: #333;
  font-size: 28px;   
      
}
.social-icons i:hover {
    color: rgb(4, 151, 151);
    cursor: pointer;
}

