
#navber{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px;
    margin: 10px ;
    box-shadow: 2px 5px 8px ;
    position: sticky;
    align-items: center;

}
.navber:hover{
    box-shadow: 0px 20px 10px blue;
}

.nav-sec1 , ul , li{
    list-style: none;
    display: flex;
    margin-right: 25px ;
    font-size: 1.5rem;
    padding: 5px ;
}
li:hover{
    background-color: #0000ff;
color: white;

}
.nav-sec2>button{
background-color: antiquewhite;
padding: 12px ;
font-size: 1.5rem;
font-weight: bolder;
margin-right: 15px ;
}
.nav-sec2>button:hover{
background-color: #0000ff;
color: white;
}
.hero-section{
    display: flex;
    padding: 5px;
    width: 70% ;
    align-items: center;
    margin: 0 auto;

}
.text-content , p , h1{
    text-align: center;
}

.head-section , h1{
text-align: center;
}
/* .card{
    align-items: center;
    align-content: center;
    
}
.card>img{
    border: 2px solid black;
    width: 300px;
}
.card>h2>button{
    align-items: center;
} */

.products {
  padding: 30px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.product-grid {
  display: flex;
  gap: 100px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 280px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #333;
}

.product-info .price {
  font-size: 1.1rem;
  color: #e91e63;
  margin-bottom: 16px;
}

.secondary-btn {
  text-decoration: none;
  background-color: #e91e63;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.secondary-btn:hover {
  background-color: #c2185b;
  transform: translateY(-3px);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 10px 20px 30px   #e91e63;
}
.navber:hover{
    box-shadow: 5px 20px 15px blue;
}
/* footer design  */
.site-footer {
  background-color: #000000;       
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  padding: 1rem 0;*/
  margin-top: 2rem;          
}
.site-footer a {
  color: #fff;             
  text-decoration: none;
  margin: 0 0.3rem;         
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #0077ff;
}
